Shrink / VACUUM Database - Sample Code C#

Just execute a query of"vaccuum;".using (SQLiteCommand command = m_connection.CreateCommand()){    command.CommandText ="vacuum;";    command.ExecuteNonQuery();}

posted on 2011-11-19 11:05  z1971  阅读(148)  评论(0编辑  收藏  举报