与 ADO.NET、SQLite 和 TSQL 的只读连接
我的代码通过一个连接读取并通过另一个连接写入。我不想意外地使用读取连接进行写入。我怎样才能使连接只读?我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 Read Only=True 添加到只读连接。
You can add Read Only=True to the read-only connection.