chickadee » sql-de-lite » column-type

column-type statement indexprocedure

Returns the type of the indexed column in the current row. SQLite is dynamically typed and the column types are unique to each row.

SymbolDatabase type
integerSQLITE_INTEGER
floatSQLITE_FLOAT
textSQLITE_TEXT
blobSQLITE_BLOB
nullSQLITE_NULL
(map (lambda (i) (column-type s i))
     (list 0 1 2))
; => (integer text text)