It sounds to me like your DELETE statement contains a bug. You are correct to pass NULL as the callback function. Your best bet might be to try to get the DELETE working in the sqlite shell first. Or you could just post the table schema, text of the statement and the contents of the row you are unable to delete and someone here will probably be able to see the problem.
--- Daniel <[EMAIL PROTECTED]> wrote: > Hello, > > I'm using ne latest SQlite Version in a C++ programm without a wrapper > class/function or something like that. To execute SELECT Statements the > sqlite3_exec() function with a callback function works fine. But what must I > do to execute DELETE Statements? There is no callback function needed > because no return of the Statement is made. I tried do pass NULL for the > callback function pointer but the record in the database isn't deleted. No > error occurs, too. > > Can somebody tell me, what I have to do, for executing DELETE statements? > > Thanks in advance. > Daniel > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

