(PHP 5)
sqlite_fetch_column_types(no version information, might be only in CVS)
SQLiteDatabase->fetchColumnTypes -- Restituisce una matrice con il formato delle colonne di una tabellaVersione ad oggetti (metodo):
class SQLiteDatabase {sqlite_fetch_column_types() rRestituisce una matrice con il tipo di dato delle colonne della tabella indicata da table_name.
Nome della tabella.
Risorsa SQLite Database restituita da sqlite_open () quando usato in modo procedurale. Questo parametro non è richiesto nel metodo ad oggetti.
The optional result_type parameter accepts a constant and determines how the returned array will be indexed. Using SQLITE_ASSOC will return only associative indices (named fields) while SQLITE_NUM will return only numerical indices (ordinal field numbers). SQLITE_BOTH will return both associative and numerical indices. SQLITE_BOTH is the default for this function.
Restituisce una matrice con i tipi di dati delle colonne, oppure FALSE in caso di errore.
I nomi delle colonne restituiti da SQLITE_ASSOC e da SQLITE_BOTH saranno maiuscoli o minuscoli in base al valore del parametro di configurazione sqlite.assoc_case.