Delphi and NoSQL

后端 未结 3 784
隐瞒了意图╮
隐瞒了意图╮ 2021-02-02 02:20

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

相关标签:
3条回答
  • 2021-02-02 02:38

    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.

    0 讨论(0)
  • 2021-02-02 02:48

    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.

    0 讨论(0)
  • 2021-02-02 02:55

    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.

    0 讨论(0)
提交回复
热议问题