
Hello, I can not run the VACUUM command in my application ... SQLite processes the command and it not returns error, but the database continues with the same size, which is what I do wrong?
Sub VacuumDB
WaitCursor(True)
modDBs.InitConnDB
modDBs.ConnDBApp.BeginTransaction
modDBs.CmdDBApp.CommandText = "Vacuum"
modDBs.ConnDBApp.EndTransaction
modDBs.CloseConnDB
WaitCursor(False)
End Sub
I guess the syntax is not correct but I've been looking and only find information on command line syntax
Thanks
Pagesot