如何在存在打开连接的情况下恢复 SQLite 数据库?
我正在为使用 SQLite 数据库的 C# 应用程序编写一个插件。初始数据库存储在database.db.default中。在运行时的任何时候,用户都应该能够将数据库重置为默认内容。
由于应用程序始终与数据库保持开放连接,因此我不能仅将database.db.default复制到database.db。
始终保持开放连接是否是一个好主意是一个完全不同的问题。但事实就是如此,因为我不要求更改应用程序的该部分。
有什么方法可以使用 C# 和 .NET 3.0 将 database.db.default 恢复到 database.db 中?
我很感激任何形式的帮助...
I am writing a plugin for a C# application which uses SQLite database. The initial database is stored in database.db.default. At any point during runtime the user should be able to reset the database to the default content.
Since the application has always an open connection to the database I can not just copy database.db.default to database.db.
Whether or not it is a good idea to always hold an open connection is a total different question. But that is just how it is since it is not my call to change that part of the application.
Is there any way I am able to restore database.db.default into database.db using C# and .NET 3.0?
I appreciate any kind of help ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您无法通过文件复制来恢复数据库,则可以采用困难的方式进行恢复。附加备份数据库,删除主数据库中的所有数据,然后插入备份数据库中的数据。
If you can't do a file copy to restore the database then do the restore the hard way. Attach the backup database, delete all the data in the main database, then insert the data from the backup database.
我可能在这里遗漏了一些东西,但是你不能关闭连接并在复制后重新打开它吗?
I'm probably missing something here, but can't you just close your connection and reopen it after the copy?