7

我在我的 vb.net 程序中使用 System.data.sqlite.dll。对于我的一生,我无法弄清楚激活 WAL 模式的代码。

我是在创建数据库后立即激活此命令还是使用每个新的 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 回答