Re: [sqlite] Error A0A

2008-09-10 Thread Dennis Cote
[EMAIL PROTECTED] wrote: > Do you think this is causing my problem? No, not your immediate problem. > I've added reset call there because without that this error was more frequent. > With the reset call in place the sqlite_step will re-execute the entire statement from the beginning after a bu

Re: [sqlite] Error A0A

2008-09-10 Thread rrrado2
Do you think this is causing my problem? I've added reset call there because without that this error was more frequent. [EMAIL PROTECTED] wrote: > I'm using some wrapper but modified. > Here is my Exec method: > > > if ( rc == SQLITE_BUSY) > { > Sleep(0); > rc = _sqlite3_reset(m_stmt); > contin

Re: [sqlite] Error A0A

2008-09-09 Thread Dennis Cote
[EMAIL PROTECTED] wrote: > I'm using some wrapper but modified. > Here is my Exec method: > > > if ( rc == SQLITE_BUSY) > { > Sleep(0); > rc = _sqlite3_reset(m_stmt); > continue; > } > You should not be resetting the prepared statement

Re: [sqlite] Error A0A

2008-09-09 Thread rrrado2
urn 0; } if ( rc == SQLITE_BUSY) { Sleep(0); rc = _sqlite3_reset(m_stmt); continue; } break; } Date: Mon, 8 Sep 2008 10:07:57 -0400 From: "Jeffrey Becker" <[EMAIL PROTECTED]> Subject: Re:

Re: [sqlite] Error A0A

2008-09-08 Thread Jeffrey Becker
Are you using the native api or one of the wrappers? On Mon, Sep 8, 2008 at 9:58 AM, Dan <[EMAIL PROTECTED]> wrote: > > On Sep 8, 2008, at 1:47 PM, [EMAIL PROTECTED] wrote: > >> >> I'm using multiple connections to sqlite database from more threads >> in my application. Few customers reports sqlit

Re: [sqlite] Error A0A

2008-09-08 Thread Dan
On Sep 8, 2008, at 1:47 PM, [EMAIL PROTECTED] wrote: > > I'm using multiple connections to sqlite database from more threads > in my application. Few customers reports sqlite error in windows > vista which I cannot get in my system. > Error code is 0xA0A (I haven't turned on extended error co

[sqlite] Error A0A

2008-09-08 Thread rrrado2
I'm using multiple connections to sqlite database from more threads in my application. Few customers reports sqlite error in windows vista which I cannot get in my system. Error code is 0xA0A (I haven't turned on extended error codes). This error number gives no sense to me because it is not de