sqlite数据库锁定错误

发布于 2024-11-05 04:35:48 字数 418 浏览 0 评论 0原文

我正在使用后端 sqlite 数据库开发 C# 应用程序。在我的应用程序中使用了多线程概念。所有线程都会调用下面提到的代码。那么它会抛出错误,因为数据库被锁定。

lock (localLockHandle)
        {

            SQLiteCommand cmd = conn.CreateCommand();
            cmd.CommandText = sqlExpr;
            int ireturn = cmd.ExecuteNonQuery();
            return ireturn;
        }

有什么办法可以摆脱这个数据库锁定错误。我在每个进程后打开和关闭连接。甚至有时它会抛出这个锁定错误。请给我一个解决方案,因为这对我来说非常重要。

谢谢

I am developing c# application with a backend sqlite db. In my application mutithreaded concepts are being used. All the threads will call the below mentioned code. then it will throw error as database is locked.

lock (localLockHandle)
        {

            SQLiteCommand cmd = conn.CreateCommand();
            cmd.CommandText = sqlExpr;
            int ireturn = cmd.ExecuteNonQuery();
            return ireturn;
        }

Is there any way to get rid from this database lock error. i am opening and closing the connection after each process. even sometimes it throws this lock error. please give me a solution as it is very critical for me.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时间海 2024-11-12 04:35:48

如果我正确理解您的代码片段,那么您正在本地范围内的对象上使用 lock 。这意味着其他线程将锁定不同的对象。

尝试定义一个全局锁,如下所示:

static readonly object DatabaseLock = new object()

,然后在任何访问数据库的地方使用lock(DatabaseLock)

If I understand your code snippet correctly, you are using lock on an object in the local scope. This would mean that other threads would lock on a different object.

Try defining a global lock, like this:

static readonly object DatabaseLock = new object()

and then using lock(DatabaseLock) wherever you access the database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文