Sql Server Compact Edition 3.5:数据是否保留在数据库文件中?

发布于 2024-08-10 07:44:13 字数 326 浏览 4 评论 0原文

我有一个问题,其中我有一个用于桌面应用程序的 SQL Server Compact Edition 数据库。我对 Sql Server Compact Edition 完全陌生。问题是,即使应用程序关闭或重新启动,插入数据库的数据是否仍然存在?因为在使用 Sql Server Management Studio 管理数据库时我似乎无法找到我的数据。

我错过了什么/什么吗?

编辑:SQL Server Compact Edition 仅用于缓存本地数据吗?我们不能像通常在 Sql Server Express 上那样使用它,例如使用 Sql Server Management Studio 管理数据?

I have this question in which I have a SQL Server Compact Edition database for a desktop application. I am completely new to Sql Server Compact Edition. The question is, does the data inserted in the database persist even if the application is shut down or restarted? Coz I cant seem to find my data when using Sql Server Management Studio to manage the database.

Am I missing anything/something?

EDIT: Is SQL Server Compact Edition used for caching local data only? We cant use it like what we normally do on Sql Server Express for example managing data using Sql Server Management Studio?

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

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

发布评论

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

评论(2

山有枢 2024-08-17 07:44:13

在您的项目中,将复制选项从“始终复制”设置为“如果较新则复制”。

如果您进行重建,它也会被删除。

In your project, set the copy options to 'Copy if newer' from 'Copy always'.

If you do a rebuild, it will be deleted as well.

美人骨 2024-08-17 07:44:13

为了便于讨论,SQL Server Compact Edition 是 MS SQL Server 压缩到单个用户的单个 .DLL 中(好吧,我知道它比这更复杂,但为了讨论它就可以了)。

因此,数据一旦写入,就应该一直保留到删除为止,其方式与您期望将其保留在服务器实例中的方式几乎相同。

如果数据没有被持久化,我想知道调用之间的数据文件发生了什么。

我也不确定它是否可以使用 SQL Server Management studio 进行操作,尽管它是一个 .MDF 文件。

SQL Server Compact Edition is, for the sake of discussion, MS SQL Server squeezed down into a single .DLL for a single user (ok, I know its a bit more complicated than that, but it will do for the sake of discussion).

So data, once written, should be persisted until deleted in pretty much the same way as you'd expect it to be persisted in a server instance.

If data is not being persisted I would wonder what's happening to the data file between invocations.

I'm also not certain whether it can be manipulated using SQL Server Management studio although its an .MDF file.

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