Does anyone have a good recommendation for an ORM (Object Relational Mapper) for C++?

Our technology stack is: IDE/C-Compiler = Borland C++ Builder so ideally something that is known to compile with BCC.

We use PostgreSQL as our database and developed our own database abstraction layer using common API to many driver type interface. So ORM need not be database specific although if it is, I'm only currently interested in PostgreSQL aware solutions or solutions with a PostgreSQL's C-Library driver.

One option I have been entertaining is using Perl as an embedded language within our application. Perl has ORM called Rose::DB::Object.

link|improve this question
feedback

closed as not constructive by casperOne Feb 21 at 20:39

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

13 Answers

up vote 32 down vote accepted

The ones that I've used are -

  1. Database Template Library
  2. SOCI

DTL is probably the closest to an ORM you can get in C++. And even that is probably stretching it because you still have to know DB column names, do some of the bindings, etc. And getting used to how a simple SELECT statement works will drive you crazy the first few times but makes perfect sense later on.

Also DTL works very nicely with STL algorithms.

I've used it with Oracle 9i and MySQL 4.x. It uses ODBC 3.0 underneath the covers. If PostgreSQL has an ODBC driver, I'm sure it would work as well.

SOCI on the other hand is actually nicer in my opinion. You do have to write the SQL yourself, but it is much more flexible in regards to binding (input and output). Also the integration with Boost.Optional is very nice.

It should be noted that true ORM (as most are used to it in .NET or Java) are not possible in C++ as it exists today because there is no way to introspect the classes at runtime. You have to write the binding code in DTL. You'll have to write the binding code in SOCI. But it is trivial code to write. SOCI requires more code, but easier to read. DTL requires less, but harder to read.

Based on your update - I think SOCI would be your best bet then. It is lower level, but you could build your own containers around it. And I believe it is built against PGSQL directly vs. ODBC

link|improve this answer
Thanks Justin but maybe I can clarify. I'm not looking for the ORM to expect a container. I am more than willing to work with the ORM's containers from which I can stub out for my own needs such as iterating over. The DTL looks enticing but I don't have much STL knowledge to fully grok what they are saying but I did note they are relying on ODBC. In my case I'm interested in either using our own PostgreSQL driver which uses the PGSQL.DLLs or an ORM that has a PostgreSQL based on PBSQL.DLL or PGSQL LIBs rather than ODBC. Thanks & please correct where I may be derailing the thread. :) – Eric Sep 16 '08 at 17:55
I think SOCI would be your best bet then. It is lower level, but you could build your own containers around it. And I believe it is built against PGSQL directly vs. ODBC. – Justin Rudd Sep 16 '08 at 20:40
It is possible to have a Hibernate-like ORM in C++. And you don't have to write the binding code manually. Check the answer about ODB below for details. – Boris Kolpackov Oct 1 '10 at 11:06
@Boris Kolpackov: And the point being, it's not C++. It's some other language compiled into C++. – EFraim Apr 8 '11 at 15:31
Yes, it is plain, standard C++. You compile your header that defines C++ classes and get binding code also in C++ as a result. Which part of this process is "not C++"? – Boris Kolpackov Apr 10 '11 at 13:43
show 2 more comments
feedback

I recently found hiberlite which seems to be a very powerful little library. The only downside is that at the moment, it only appears to be sqlite compatible.

I'm going to look at the source to see if I can at least get it to be mysql compatible, as well..

link|improve this answer
this one rocks! – Filip Dupanović Oct 29 '09 at 8:09
1  
It seems like there is no support for transactions, though. (That is, the transactions are only used at statement-level granularity; I cannot perform several object modifications as a single transaction.) – EFraim May 18 '10 at 20:57
The other downside is that the project appears to be dead. Last release was in 2008. – Boris Kolpackov Apr 17 '11 at 9:28
feedback

Wt::Dbo is a nice template based ORM for C++. Pure C++ and without ugly macros.

link|improve this answer
feedback

Related to the subject, I found LiteSQL, a C++ Object-Relational Persistence Framework. Haven't tried myself but looks like it could be worth checking out.

link|improve this answer
feedback

Debea database library (http://debea.net) has native support for PostgreSQL and should compile with BCC just fine.

link|improve this answer
feedback

The CppDB library has recently changed its license to a Boost/MIT license and is potentially very interesting. The transaction commit guards are a VERY nice syntactic candy, along with its native handling of cached prepared statements (careful pgbouncer users).

CppDB was designed with following goals in the mind:

  1. Performance is the primary goal - make fastest possible SQL connectivity as possible
  2. Transparent connection pooling support
  3. Transparent prepared statements caching
  4. Dynamic DB modules loading and optional static linking
  5. Full and high priority support of FOSS RDBMS: MySQL, PostgreSQL, Sqlite3
  6. Support as many RDBMSs as possible via cppdb-odbc bridge Simplicity in use
  7. Locale safety

Support of both explicit verbose API and brief and nice syntactic sugar This library was developed on the base of experience with SOCI, libdbi and other SQL Connectivity libraries.

The CppDB library, version 0.0.3 and above, is released under Boost Software License 1.0 or The MIT license at your opinion, CppDB version 0.0.2 and below is released under terms of LGPLv3 license.

link|improve this answer
good library but it is not ORM – puchu Oct 19 '11 at 21:49
Correct, however the ability to pull specific fields dynamically is arguably more useful than an actual ORM when dealing with a compiled language such as C/C++. cppdb/query.html#query_iter – Sean Nov 7 '11 at 5:58
feedback

There is also a new open source C++ library : QxOrm. QxOrm is based on QtSql Qt module to communicate with database and boost::serialization to serialize your data with xml and binary format. The web site is in french but quick sample code and tutorial code is in english (a translation is in progress...).

link|improve this answer
feedback

I can't recommend embedding Perl into a C/C++ app if you can avoid it. I've done this on a number of projects, and Perl is not easy to work with in this environment. Part of this is due to the reference counting required for all Perl data types, which makes it easier than it should be to leak memory. Aside from that, the API is just very esoteric, and poorly documented. It's definitely possible, but not easy.

link|improve this answer
feedback

Take Rose::DB::Object for a spin. I guarantee, you'll never go back to the way you were coding before. It takes so much tedium out of database programming tasks. It will truly be night and day. If you know Perl already, it's a definite win in terms of programmer efficiency. If you don't know Perl, it is the best reason to learn Perl that I know of!

link|improve this answer
feedback

my sqlite3 cpp(c++) orm: http://code.google.com/p/sqlitex/

link|improve this answer
feedback

If you want a C++ ORM which ties in cleanly with Qt's metaobject system, you should consider using QDjango:

http://code.google.com/p/qdjango/

It builds upon the QtSql module for database access, so it should be able to support any database backend which QtSql supports. PostgreSQL, MySQL and SQLite are tested, but adding other backends should require only minimal work.

QDjango provides a powerful "queryset" mechanism which allows you to construct your database queries in a lazy fashion, chain filter conditions, and iterate over the results.

It also provides (optional) support for scripting your models using QtScript (an ECMAScript dialect which uses a JavaScriptCore-based engine).

The API is 100% documented, and you will find examples and a fairly extensive test suite with the source code.

link|improve this answer
feedback

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