Nasıl meta / kısıtlamaları (birincil anahtar ve özellikle "null izin") (MySQL için mysql_fetch_field gibi) PHP5 kullanarak bir SQLite v2.8 tablodaki her sütun için alabilirim?
sqlite_fetch_column_types
(OO: $db->fetchColumnTypes
) only gets column name and datatype:
http://dk.php.net/manual/en/function.sqlite-fetch-column-types.php
SQLITE_MASTER has the info - but not as a variable. Example:
SELECT name FROM SQLITE_MASTER;
Sqlite_master ... Sadece bu yapının (v2.8) ile bir dizi verir:
[type] => table
[name] => foo
[tbl_name] => foo
[rootpage] => 3
[sql] => CREATE TABLE foo ( id INTEGER PRIMARY KEY, name CHAR(255) )
(Ve "rootpage" nedir?)