- 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.
Symbol Database type integer SQLITE_INTEGER float SQLITE_FLOAT text SQLITE_TEXT blob SQLITE_BLOB null SQLITE_NULL (map (lambda (i) (column-type s i)) (list 0 1 2)) ; => (integer text text)