如何防止SQL Compact DB被删除?
我正在 Visual Studio 2008 中使用 SQL Compact 数据库开发一个应用程序。当我启动应用程序并运行该进程时,数据将在几个小时内加载到数据库中,价值几十兆字节。但是,当我完全调试时,更改代码中的某些内容(而不是数据库结构中的内容),再次运行项目,数据库将被删除。
有谁知道如何防止这种行为?我需要将数据保留在数据库中以对其进行测试。
I'm developing an applciation using SQL Compact database in Visual Studio 2008. When I start the application and run the process, the data is being loaded into database for few hours worth of few tens of megabytes. However, when I quite debugging, change something in code (not in DB structure), run the project again, the database is erased.
Does anyone know how to prevent this behavior? I need the data to stay in DB to test on it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否将数据库文件添加到您的项目中?选择它,然后在“属性”窗口中将其“复制”属性从“始终”更改为“如果较新”。
Did you add the database file to your project? Select it and in the Properties window change its Copy property from Always to If Newer.