开源数据库管理系统
我必须使用以下内容创建两个 Web 应用程序:
ASP.NET
JSP
在不使用 MySQL 的情况下,我正在寻找免费(开源)的 DBMS。
我找到了 Firebird 和 Postgresql,但我不确定它们;在这种情况下您还使用过任何其他强大的 DBMS 吗?
谢谢。
I have to create two web applications using:
ASP.NET
JSP
Without using MySQL, I'm looking for a free (open source) DBMS.
I found Firebird and and Postgresql, but I'm not sure about them; Is there any other powerful DBMS you've already used in this case ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用过 Firebird 和 Postgres,它们都很好。您还可以查看SQLite3,或“NoSQL”数据存储之一,例如MongoDB, CouchDB,或Riak。
Firebird 和 SQLite 的特点是可嵌入数据库,这意味着您可以轻松地将它们作为应用程序的一部分提供,而无需要求最终用户单独设置数据库。
I've used both Firebird and Postgres, and they're fine. You could also look at SQLite3, or one of the "NoSQL" data stores, like MongoDB, CouchDB, or Riak.
Firebird and SQLite have the distinction of being embeddable databases, meaning you can easily ship them as a part of your application without having to require the end user to set up the database separately.