On 4/9/2013 8:01 PM, [email protected] wrote:
I am using sqlite3_column_type.

Have you called sqlite3_step before calling sqlite3_column_type? sqlite3_column_type doesn't report the type of the column (which is a concept that doesn't really exist in SQLite), but the type of the value in the given column and the *current row*. For it to work, the statement has to actually be positioned over some row.
--
Igor Tandetnik

_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to