Hello Daniel,
So, sqlite3_exec() returns no error status or message? How are you generating the SQL query? What happens if you type the exact same command in Sqlite3.exe? Your method should work, I use Exec to create and drop tables without any callback functions. My guess is the query is just wrong. You should get a failed status from the C call though. C D> Hello, D> Thanks for your answer. >> sqlite3_prepare() >> sqlite3_step() >> sqlite3_finalize() D> I tried to do this, but nothing happend. I passed the SQL Statement to the D> prepare function and sqlite3_stmt to the step and the finalize function. The D> prepare function returns SQLITE_DONE and the prepare and finalize functions D> return SQLITE_OK. But the record stays in the Database. D> What do I do wrong? The database isn't opend in any other way during the D> query. D> Thanks D> Daniel -- Best regards, Teg mailto:[EMAIL PROTECTED]

