[sqlite] SIGSEGV Error when using sqlite3_exec( )

2011-02-10 Thread Zaryab Munir (zmunir)
Hi, 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

[sqlite] help: sigsegv error using sqlite3_exec( )

2011-02-10 Thread Zaryab Munir (zmunir)
Hi, 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 = NULL; Sqlite3_open(":memory:", ); When I try to use sqlite3_exec( ) I get segmentation faults. }