Aha, thanks! 

-----Original Message-----
From: Cory Nelson [mailto:[EMAIL PROTECTED] 
Sent: Saturday, June 25, 2005 11:30 AM
To: sqlite-users@sqlite.org
Subject: Re: [sqlite] Bug in SQLite C++ Wrapper?

cmd.executenonquery() creates a reader, which calls reset when destructed :)

On 6/25/05, Brown, Dave <[EMAIL PROTECTED]> wrote:
> 
> In looking at the SQLite C++ Wrapper 
> (http://dev.int64.org/sqlite.html) I noticed the example insert code has a
loop like:
> 
>  for(int i=0; i<10000; i++) {
>     cmd.bind(1, i);
>     cmd.executenonquery();
>  }
> 
> but sqlite3_reset() isn't being called each time after the statement 
> is executed (executenonquery() just ends up calling sqlite3_step() ). 
> Doesn't
> sqlite3_reset() have to be called in order to reuse a prepared query?
> 
> -Dave
> 


--
Cory Nelson
http://www.int64.org

Reply via email to