Re: [sqlite] Can we execute a query after preparing statement for different other query?

2013-07-18 Thread Ashok Pitambar
Thanks Hipp. On Thu, Jul 18, 2013 at 5:36 PM, Ashok Pitambar wrote: > Hi All, > > I trying to run a query it is crashing before that I have created > two prepared statements which are not finalized yet and after that I tried > run a query (done sqlite3_prepare_v2) it is crashing while

Re: [sqlite] Can we execute a query after preparing statement for different other query?

2013-07-18 Thread Richard Hipp
On Thu, Jul 18, 2013 at 8:06 AM, Ashok Pitambar wrote: > Hi All, > > I trying to run a query it is crashing before that I have created > two prepared statements which are not finalized yet and after that I tried > run a query (done sqlite3_prepare_v2) it is crashing while > doing sqlite3

[sqlite] Can we execute a query after preparing statement for different other query?

2013-07-18 Thread Ashok Pitambar
Hi All, I trying to run a query it is crashing before that I have created two prepared statements which are not finalized yet and after that I tried run a query (done sqlite3_prepare_v2) it is crashing while doing sqlite3_step(). Is there any problem with this kind of operation? How man