[sqlite] sqlite3_close( ) error

2011-03-23 Thread Zaryab M. Munir
Hi, I am consistently observing this error in Linux envrionment. I have sqlite3 library linked with my DLL. The program links/loads my DLL as well as a second DLL which includes the code to open and close db connections. Wondering what can be wrong. Below is description: sqlite3 *db; 1)

Re: [sqlite] SIGSEGV Error when using sqlite3_exec( )

2011-02-10 Thread Zaryab M. Munir
u have some other completely unrelated function called > read()? If > the latter then you screwed up your application. Rename > your function > and I guess everything will work fine. [zm]: No there is no other function read() and I did compile glibc. I want to check if it is static or

Re: [sqlite] SIGSEGV Error when using sqlite3_exec( )

2011-02-10 Thread Zaryab M. Munir
Thanks, my reply inline: Sincerely, Zaryab --- On Thu, 2/10/11, Pavel Ivanov wrote: > From: Pavel Ivanov > Subject: Re: [sqlite] SIGSEGV Error when using sqlite3_exec( ) > To: "General Discussion of SQLite Database" > Cc:

[sqlite] SIGSEGV error when using sqlite3_exec()

2011-02-09 Thread Zaryab M. Munir
I am using an in-memory dbase in a multi-threaded application and have the following two questions: I create dbase connections by each thread using the API: { Sqlite3 *db =3D NULL; Sqlite3_open(":memory:", ); When I try to use sqlite3_exec( ) I get segmentation