(PHP 5)
sqlite_fetch_column_types(no version information, might be only in CVS)
SQLiteDatabase->fetchColumnTypes -- Return an array of column types from a particular tableObject oriented style (method):
class SQLiteDatabase {sqlite_fetch_column_types() returns an array of column data types from the specified table_name table.
The table name to query.
The SQLite Database resource; returned from sqlite_open () when used procedurally. This parameter is not required when using the object-oriented method.
オプションのresult_type パラメータには定数を指定でき、返される配列の添字を定義します。 SQLITE_ASSOCを用いると、連想配列の添字(名前フィールド)のみが 返されます。一方、SQLITE_NUM は、 数値の添字(フィールド番号)のみを返します。SQLITE_BOTHは、 連想配列の添字と数値の添字の両方を返します。 SQLITE_BOTH がこの関数のデフォルトです。
Returns an array of column data types; FALSE on error.
SQLITE_ASSOCおよびSQLITE_BOTHで 返されるカラム名は、設定オプション sqlite.assoc_case の値に基づき、 大文字小文字が変換されます。