.Net 应用程序的开源嵌入式数据库选项
我有一个 .Net 4.0 WPF 应用程序,需要嵌入式数据库。
据我所知,MS Access 无法在 64 位 Windows 上运行。我遇到了 SSCE 问题:
无法加载 DLL 'sqlceme35.dll':此应用程序无法启动,因为应用程序配置不正确。重新安装应用程序可能会解决此问题。 (HRESULT 异常:0x800736B1)
sqlceme35.dll 安装到我的应用程序的程序文件目录中,因此我似乎无法弄清楚为什么 Windows XP Pro 没有看到它。
我想知道我可能使用的其他嵌入式数据库选项(适用于 32 位和 64 位 Windows)。有什么建议吗?
I have a .Net 4.0 WPF application that requires an embedded database.
MS Access doesn't work on 64 bit Windows I'm told. And I'm having issues with SSCE:
Unable to load DLL 'sqlceme35.dll': This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1)
sqlceme35.dll is installed into my application's program files directory, so I can't seem to figure out why Windows XP Pro doesn't see it.
I was wondering about other embedded database options I might use (that work on both 32 and 64 bit windows). Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQLite
...以及 System.Data.SQLite 提供程序。
SQLite
...and the System.Data.SQLite provider.