On Oct 9, 2008, at 7:42 PM, Dave Toll wrote: > > I noticed that similar tests elsewhere in the code check that the size > of u64 is either 8 or 4. I'm building SQLite 3.6.3 with the following > defines: -DSQLITE_INT64_TYPE=long -DSQLITE_32BIT_ROWID=1
There are various #defines such as the above that attempt to tell SQLite to use a 32-bit integer where it is expecting to have a 64-bit integer. But such configurations are untested. You will likely encounter bugs. I recommend that you only use SQLite on platforms that have a working 64-bit integer capability. D. Richard Hipp [EMAIL PROTECTED] _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

