7

vb.net プログラムで System.data.sqlite.dll を使用しています。そして、私の人生では、WALモードをアクティブにするコードを理解できません。

DB を作成した直後に、または新しい SQLiteConnection ごとにこのコマンドをアクティブにしますか。

もしそうなら、今すぐ使用する必要があるコードは次のようなものを使用しています。

cnn As New SQLiteConnection(String.Format("Data Source={0}\{1};PRAGMA jounal_mode=WAL;", Application.StartupPath, DBName))

これは PRAGMA コマンドの使用方法ですか?

4

3 に答える 3

9

クラスを使用して、いつでもSQLiteConnectionStringBuilder仕事をすることができます。

    SQLiteConnectionStringBuilder connBuilder = new SQLiteConnectionStringBuilder();
    connBuilder.DataSource = filePath;
    connBuilder.Version = 3;
    //Set page size to NTFS cluster size = 4096 bytes
    connBuilder.PageSize = 4096;
    connBuilder.CacheSize = 10000;
    connBuilder.JournalMode = SQLiteJournalModeEnum.Wal;
    connBuilder.Pooling = true;
    connBuilder.LegacyFormat = false;
    connBuilder.DefaultTimeout = 500;
    connBuilder.Password = "yourpass";


    using(SQLiteConnection conn = new SQLiteConnection(connBuilder.ToString()))
    {
    //Database stuff
    }
于 2012-05-10T10:13:11.630 に答える
4

これは、私のプロジェクト (App.config) のサンプル接続文字列です。

  <connectionStrings>
    <add name="SQLiteDb" providerName="System.Data.SQLite" connectionString="Data Source=data.sqlite;Version=3;Pooling=True;Synchronous=Off;journal mode=Memory"/>
  </connectionStrings>

代わりにjournal mode=Memoryを指定できますjournal mode=WAL

接続文字列でジャーナル モードを指定しない場合は、PRAGMA jounal_mode=WALデータベースへのクエリを実行して手動で切り替えることができます。

于 2012-05-26T09:58:48.880 に答える
1

コマンド非クエリとしてプラグマを実行する必要があります。

Using cmd As SQLiteCommand = cnn.CreateCommand()
   cmd.CommandText = "PRAGMA journal_mode=WAL"
   cmd.ExecuteNonQuery()
End Using

接続を開いたままにしておく限り、これを一度設定するだけで十分です。

于 2011-12-31T03:32:38.007 に答える