On 2008 Jan, 03, at 17:21, Kees Nuyt wrote:
If I understand the info at http://www.sqlite.org/c3ref/c_blob.html well, the INTEGER is always a 64-bit signed integer. Internally, integers are compressed, so they don't occupy eight bytes all the time.sqlite3_column_int64(); will always return a sqlite3_int64. So, no need to worry.
Thanks, Kees (and John S. too). So, apparently the function sqlite3_column_int() is an alternative which can be used, under "normal" circumstances, when you know the value is small enough, and want to assign it to a int.
----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------

