ingobar: Schema ausgeben

Hallo zusammen,

kann mir jemand sagen, ob man das Schema (die Spaltennamen) einer Tabelle ausgeben/abrufen kann. Ich verwenden meist MySQL und im Moment SQLite (Safari/Webkit-Browser).

Danke

  1. Hello,

    MfG
    Rouven

    --
    -------------------
    sh:| fo:} ch:? rl:( br:& n4:{ ie:| mo:} va:) js:| de:] zu:| fl:( ss:) ls:& (SelfCode)
    "I wish it need not have happened in my time" - "So do I, and so do all who live to see such times. But that is not for them to decide. All we have to decide is what to do with the time that is given us."  --  J.R.R. Tolkien: "The Lord Of The Rings: The Fellowship Of The Ring"
    1. Hi,

      für mySQL könnte auch das Information_Schema mit der Tabelle "Columns" funktionieren, ist imho ANSI-92 Standard.

      SELECT * FROM INFORMATION_SCHEMA.COLUMNS

      Gruss, Frank