I seem to have this problem with only one table (so far).
If I want to update tables I use the DELETE * from tablename which has always worked before. (Sometimes at the wrong time, but we learn!)
I get an error with one table for some reason?
Has anyone experienced this? I pulled the table onto the computer and tried the same thing with sqllite and it locks up? I did try DELETE & from 'tablename' and DELETE * from tablename where 1 and many variations, but nope!
Sub CreateMenuTable
Log("menu table created")
If Started = 0 AND LanguageSelected = 0 Then
SQL1.ExecNonQuery("CREATE TABLE menus (id INTEGER, en TEXT, ru TEXT, bg TEXT, gr TEXT, icon TEXT)")
End If
If Started = 0 AND LanguageSelected = 1 Then
SQL1.ExecNonQuery("DELETE FROM menus")
SQL1.TransactionSuccessful ' <- !!!!!!!!!!
End If
End Sub
Cheers, Sorex, although I am getting a problem which I think is due to the fact that I update all the tables at once and the TransactionSuccessful call should only be called once they are done I believe?
Will report back, getting late for me here as well.