Re: [sqlite] database disk image is malformed - Error

2012-09-25 Thread Rittick Gupta
Do you think a retry of the query would help resolve this issue ? Do I have to close & reopen the database. Thanks for your help. regards, Rittick ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] database disk image is malformed - Error

2012-09-25 Thread Rittick Gupta
David, Thanks. Do you still have the problem ? Did you find a workaround to avoid the problem - appreciate your response. regards, Rittick ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] SQL logic error or missing database error

2012-08-16 Thread Rittick Gupta
Why would it work with the subseqyent open if there was a problem with the install ? ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

[sqlite] SQL logic error or missing database error

2012-08-16 Thread Rittick Gupta
I get the following error while opening the database after a system reboot. SQL logic error or missing database The problem does not happen with the subsequent open with a new process. Is there any reason why we get these errors? ___ sqlite-users

[sqlite] Memory corruption in a mutilthreaded environment

2012-08-10 Thread Rittick Gupta
I have a program with multiple threads. The threads do not share the same handle.Occcasionally the program dies with a core. I see a thread always with the following stack: #3 0x6000d336b7c0:0 in closeDB () at ../lang/sql/generated/sqlite3.c:35553 #4 0x6000d3388c60:0 in

[sqlite] Difference between SQLITE_CONFIG_MULTITHREAD & SQLITE_CONFIG_SERIALIZED options

2012-02-13 Thread Rittick Gupta
What is the difference between the SQLITE_CONFIG_MULTITHREAD & SQLITE_CONFIG_SERIALIZED options - When a) the same handle is shared between multiple threads in a process and when different handles are used by threads in a proceses. Is there any difference in concurrency ? What should be used

[sqlite] Usage of sqlite3_db_release_memory

2012-02-12 Thread Rittick Gupta
What memory does the sqlite3_db_release_memory call release from the heap. Is it required that this call be made frequently to free up space which is no longer used ? Is it applicable in a shared cache environment ? Will appreciate a response. ___