与 ADO.NET、SQLite 和 TSQL 的只读连接

发布于 2024-08-16 15:59:32 字数 97 浏览 5 评论 0原文

我的代码通过一个连接读取并通过另一个连接写入。我不想意外地使用读取连接进行写入。我怎样才能使连接只读?我正在使用 SQLite ATM,并将在原型结束时将代码部分转换为 tsql。

My code reads via one connection and writes via another. I dont want to accidentally write with the read connection. How can i make the connection readonly? I am using SQLite ATM and will convert sections of code to tsql when the prototype is over.

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

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

发布评论

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

评论(1

最冷一天 2024-08-23 15:59:32

您可以将 Read Only=True 添加到只读连接。

Data Source=filename;Read Only=True;

You can add Read Only=True to the read-only connection.

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