ASP.NET 的嵌入式数据库
我需要一个可以在 ASP.NET 应用程序中使用的嵌入式数据库解决方案。不幸的是,SQL Server 精简版似乎不支持 ASP.NET,并且我的 Web 主机无法使用 SQL Server。 MS Access 是一个选项。但希望有一些更好的开源解决方案。谢谢。
I need an embedded database solution that can be used from within an ASP.NET application. Unfortunately, it seems that SQL Server compact edition does not support ASP.NET and my web host does not avail me SQL Server.
MS Access is an option. But would like to have some better open source solutions. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
有很多选择:
我会推荐 Sqlite。
There are quite a few options:
I would recommend Sqlite.
SQLite 非常流行。第三方供应商提供了多种 .NET 绑定。
SQLite is very popular. There are several .NET bindings available from 3rd party vendors.
SQL Server Express Edition 是一个选项,但它可能不适合高容量站点,因为它有连接限制。
SQL Server Express Edition is an option, but it may not be appropriate for high volume sites as it has a connections limit.
您可以使用 SQllite这是一个基于文件的小型数据库。但它确实有局限性。
Sql Express 仍然需要安装在服务器上,因此您必须检查托管提供商。
You can use SQllite which is a file based small scale database. It does have limitation however.
Sql express still needs to be installed on the server so you would have to check the hosting provider.
如果您不介意网络数据库模型,您可以尝试以下操作: https://github.com/mdsoftware/mData 。类似 Lisp 的数据处理语言和表达式编译器/执行机是一种选择。
If you don't mind against network database model, you can try this: https://github.com/mdsoftware/mData. Lisp-like data processing language and expression compiler/execution machine are an options.