dbファイルをメモリに、メモリをファイルにコピーする機能を備えたSQLite OnlineBackupAPIを使用できます。SQLite Online Backup APIのネイティブサポートは、バージョン1.0.80.0(SQLite 3.7.11を使用)のSystem.Data.SQLiteにあります。
これは、APIをC#で使用する方法の簡単な例です。
SQLiteConnection source = new SQLiteConnection("Data Source=c:\\test.db");
source.Open();
using (SQLiteConnection destination = new SQLiteConnection(
"Data Source=:memory:"))
{
destination.Open();
// copy db file to memory
source.BackupDatabase(destination, "main", "main",-1, null, 0);
source.Close();
// insert, select ,...
using (SQLiteCommand command = new SQLiteCommand())
{
command.CommandText =
"INSERT INTO t1 (x) VALUES('some new value');";
command.Connection = destination;
command.ExecuteNonQuery();
}
source = new SQLiteConnection("Data Source=c:\\test.db");
source.Open();
// save memory db to file
destination.BackupDatabase(source, "main", "main",-1, null, 0);
source.Close();
}