On Tuesday, May 13, 2014 12:02:27 PM gwenn wrote:
> Is there any way to differentiate one value persisted with
> sqlite3_bind_int from another persisted with sqlite3_bind_int64 ?

No, there's no difference

> How to know which method between sqlite3_value_int and
> sqlite3_value_int64 should be used to retrieve the value back ?

Load it with sqlite3_value_int64 every time. If the number fits in a 32 bit 
integer, then you can store it in one.

Charles
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to