Could someone provide a sample code which demonstrates, how to shink/vacuumize an SQLite Database in VB.NET or C#?
i'd really appreciate!
Christian
Just execute a query of "vaccuum;".
using (SQLiteCommand command = m_connection.CreateCommand()){ command.CommandText = "vacuum;"; command.ExecuteNonQuery();}