Re: [sqlite] Very large database

2008-03-13 Thread sswensen
Thanks you solved my problem. I was passing null instead of 0 to open_v2. I had looked at the source before but it did not click. Also I had 3 routines in my app each opening the database, doing some work then closing. The first routine using sqlite3_exec the second sqlite_open/prep/step the

[sqlite] Very large database

2008-03-12 Thread sswensen
Is there any reason why a database of >20GiB would have problems being opened with sqlite3_open_v2 or have issues with sqlite3_prepare_v2. I am running on a RHEL 5 x86_64 server. Accessing the database via the legacy open and prepare functions works fine as well as the exec function. The