Good embedded database for Qt?

一个人想着一个人 提交于 2019-12-12 08:43:44

问题


I am looking for good embedded database that i can use for application developed using Qt. The applications target desktop users from various sites of a single large company. The database should be able to store data separately at each site and the data shall be merged with other sites as and when it is required.


回答1:


Besides SQLite, any of the following will work with Qt as an embedded database. Qt already has drivers for most of them, and you can find drivers for others. In terms of merging data "with other sites", it all depends on what you mean by this. Replication solutions for SQLite and MySQL Embedded may not be great (or exist at all). I would probably go with Firebird or Berkley.

  • Firebird
  • MySQL Embedded
  • Berkley DB - Qt plugin can be found at http://sourceforge.net/projects/qbdb/

If interested you can find more information on various replication support at the following links:

  • http://www.firebirdfaq.org/faq249/
  • https://docs.oracle.com/cd/E17276_01/html/programmer_reference/rep.html
  • http://hrivnac.web.cern.ch/hrivnac/Activities/Packages/Octopus/


来源:https://stackoverflow.com/questions/3096884/good-embedded-database-for-qt

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