从两个不同的 WinMo 应用程序打开同一个 .sdf 数据库文件是否安全?
我有两个使用相同 MS SQL Server Mobile 数据库的 Windows Mobile 6.1 应用程序。 他们可能会同时选择和更新数据库中的数据。 数据库保存在一个 .sdf 文件中。
我不知道 MS SQL 移动版本如何工作。 该应用程序加载以下 sql 库:sqlceoledb30.dll、SQLCEER30EN.DLL、sqlcese30.dll 和 sqlceqp30.dll。
这样做安全吗?
我怀疑上述 dll 允许一个应用程序使用存储在 .sdf 中的数据库,但没有单独的 SQL 进程允许多个应用程序/进程使用相同的数据库数据库。
更新:似乎只有 SQL CE 3.5 支持该功能。 这是一个相关的问题。
I have two Windows Mobile 6.1 applications that use the same MS SQL Server Mobile database. They might select and update data in the database at the same time. The database is kept in one .sdf file.
I don't know how the MS SQL mobile version works. The application loads following sql libraries: sqlceoledb30.dll, SQLCEER30EN.DLL, sqlcese30.dll and sqlceqp30.dll.
It is safe to do this?
I suspect that above dlls allow one application to work with the database stored in .sdf but there is no separate SQL process which would allow several applications / processes to work with the same database.
Update: it seems that only SQL CE 3.5 supports that functionality. This is a related question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的问题不是事务支持,而是并发连接支持。 3.5 之前的 SQL CE 版本不支持对同一数据库文件的多个连接。 例如,现在在 3.1 中,没有任何东西强制执行此限制,如果这样做,您可能会得到一些奇怪的行为。 SQL CE 3.5 添加了对单个数据文件的多个跨进程连接的支持。
The issue here is not transactional support, but is concurrent connectivity support. SQL CE versions before 3.5 did not support multiple connections to the same database file. Now in 3.1, for example, there was nothing that enforced this limitation, and you could get some strange behavior if you did it. SQL CE 3.5 added support for multiple, cross-process connections to a single data file.