Tito Ciuro <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> I'm trying to INSERT many records using sqlite3_bind_text(). This is  
> what I do:
> 
> 
> // Finish...
> result = sqlite3_finalize(statement);
> 
> What am I missing?
> 

Use sqlite3_reset() if you intent to reuse the statement.
sqlite3_finalize is the destructor.
--
D. Richard Hipp   <[EMAIL PROTECTED]>

Reply via email to