[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
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
[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
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:
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
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
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
7 matches
Mail list logo