TransactionScope和SQLite数据库被锁定

时间:2015-09-22 15:46:12

标签: sqlite entity-framework-6 transactionscope

我正在尝试使用SQLite实体框架6并在尝试使用TransactionScope时遇到数据库锁定问题。这是我的代码:

using (var txn = new TransactionScope())
{
    using (var ctx = new CalibreContext())
    {
        var book = ctx.Books.First(x => x.Id == 2);
        var author = ctx.Authors.First(x => x.Id == 3);
        book.Authors.Add(author);
        ctx.SaveChanges();
    }
    txn.Complete();
}

第一行var book = ctx.Books.First(x => x.Id == 2);执行正常。但是一旦我继续下一个,我得到一个例外,说我的数据库被锁定了。这是我的应用配置:

<configuration>
  <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  </configSections>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
  </startup>
  <connectionStrings>
    <add name="CalibreContext" connectionString="Data Source=metadata.db" providerName="System.Data.SQLite.EF6" />
  </connectionStrings>
  <system.data>
    <DbProviderFactories>
      <remove invariant="System.Data.SQLite" />
      <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.98.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
      <remove invariant="System.Data.SQLite.EF6" />
      <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".Net Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6, Version=1.0.98.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
    </DbProviderFactories>
  </system.data>
  <entityFramework>
    <defaultConnectionFactory type="Calibre.Dal.Ef.SQLiteConnectionFactory, Calibre.Dal.Ef" />
    <providers>
      <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6, Version=1.0.98.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
      <provider invariantName="System.Data.SQLite" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6, Version=1.0.98.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
    </providers>
  </entityFramework>
</configuration>

我需要使用TransactionScope因为除了执行数据库操作之外,我还必须执行我计划添加到同一事务(目前不存在)的文件系统操作。

2 个答案:

答案 0 :(得分:4)

我遇到了类似的问题。为了清楚起见,我在第二个查询中得到的错误是“底层提供程序在Open上失败”(但Open失败的原因是数据库被锁定)。

显然这个问题与MSDTC有关(TransactionScope与MSDTC紧密耦合)。

我发现a community addition to an MSDN page反过来引用this blog post
...表示如果关闭并重新打开连接,则会将事务“提升”为MSDTC事务。默认情况下哪个EF执行。通常这是一件好事 - 您不希望数据库句柄永远存在 - 但在这种情况下,行为会妨碍。

解决方案是明确打开数据库连接:

using (var txn = new TransactionScope())
{
    using (var ctx = new CalibreContext())
    {
        ctx.Connection.Open();
        // ... remainder as before ...

或者,如果所有CalibreContext个对象都是短暂的,那么可以想象在CalibreContext构造函数中打开连接。

这似乎解决了我的问题。如果我还有其他要报告的内容,我会发布更新。

答案 1 :(得分:0)

导致此问题的一个常见情况是另一个应用程序正在访问同一个数据库。

在我的情况下,这是因为我使用DB Browser for SQLite打开了数据库,删除了数据库表而没有应用更改。

单击Write Changes(或Revert Changes或Close Database),错误将消失。

(取自http://redino.net/blog/2017/03/net-sqlite-database-locked