Delphi and NoSQL

耗尽温柔 提交于 2019-12-20 09:44:02

问题


Have anyone ever used Delphi with NoSQL databases like Mongo, CouchDB or others? Which one would you recommend?


回答1:


For Mongo, theres TMongoWire and pebongo (early stages). For couchDB, I believe one would interact mainly through HTTP/JSON For Cassandra, I believe the best bet would be to somehow incorporate a supported language inside your Delphi app and use that to interact with Cassandra, or else implement a web service in a supported language and make it accessible to your Delphi application.

Hope it helps.




回答2:


There is a new full featured driver for MongoDB "mongo-delphi-driver" which can be found (with examples) here: https://github.com/gerald-lindsly/mongo-delphi-driver.




回答3:


Delphi has few native NoSQL database solutions right-out-of-the-box:

  • BDE & Paradox & dBase through the TDatabase & TTable API;
  • TClientDataSet.

Not that I suggest them, but you have not listed your requirements.



来源:https://stackoverflow.com/questions/4828846/delphi-and-nosql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!