Re: [sqlite] Embedded platform, problem upgrading from 3.6.20 to 3.7.11

2012-04-15 Thread David Bakkom
Interesting, I backed off to 3.6.23, and it works properly! I tried 3.7.0 and it did not work. Now to explore what the differences might be ... David Bakkom wrote: > > On an embedded platform, a NetBurner SB700-EX, I have SQLite 3.6.20 > running successfully. I recently upgraded t

Re: [sqlite] Embedded platform, problem upgrading from 3.6.20 to 3.7.11

2012-04-14 Thread David Bakkom
For the sqlite3_io_methods vector functions, my function for xDeviceCharacteristics just returns an SQLITE_OK. That did not cause a problem for SQLite 3.6.20. I am NOT able to set a breakpoint in the debugger. -- View this message in context:

Re: [sqlite] Embedded platform, problem upgrading from 3.6.20 to 3.7.11

2012-04-14 Thread David Bakkom
sqlite3_open, when opened read/write, returns an OK. Setting pragma's right after the open works fine. And actually I do it with a sqlite3_prepare_v2! I will try opening ReadOnly and doing a simple select. Also checking the recutrn code on a close. Simon Slavin-3 wrote: > > Are you checking

Re: [sqlite] Embedded platform, problem upgrading from 3.6.20 to 3.7.11

2012-04-14 Thread David Bakkom
I also retrieved the sqlite3_extended_errcode, and it was simply 14. Richard Hipp-3 wrote: > > Please enable error logging using > sqlite3_config()with the > SQLITE_CONFIG_LOGoption. >

Re: [sqlite] Embedded platform, problem upgrading from 3.6.20 to 3.7.11

2012-04-14 Thread David Bakkom
I enabled the logging with: sqlite3_config(SQLITE_CONFIG_LOG, SqliteLogger, NULL); sqlite3_initialize(); but I didn't appear to receive any calls to my SqliteLogger function. Do I need to do something else? Please enable error logging using

Re: [sqlite] Embedded platform, problem upgrading from 3.6.20 to 3.7.11

2012-04-14 Thread David Bakkom
I enabled the logging with: sqlite3_config(SQLITE_CONFIG_LOG, SqliteLogger, NULL); sqlite3_initialize(); but I didn't appear to receive any calls to my SqliteLogger function. Do I need to do something else? Please enable error logging using

[sqlite] Embedded platform, problem upgrading from 3.6.20 to 3.7.11

2012-04-14 Thread David Bakkom
On an embedded platform, a NetBurner SB700-EX, I have SQLite 3.6.20 running successfully. I recently upgraded the source to 3.7.11, and I have problems. Source compiled just fine. I can sqlite3_open the database, but all my sql_prepare calls return a 14, unable to open database file! Same