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

link|improve this question

56% accept rate
feedback

3 Answers

up vote 8 down vote accepted

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
I am quite sure that neither the BDE nor TClientDataSet fit the definition of nosql databases. In addition, the BDE supports SQL but I guess you already knew that because you restricted it to the TTable api. – dummzeuch Jan 29 '11 at 11:47
Ok. What is your definition of NoSQL ? – da-soft Jan 29 '11 at 14:00
Wikipedia is your friend, there is a list of NoSQL databases – mjn Jan 28 at 7:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.