diff options
author | Andre Barboza <bmg.andre@gmail.com> | 2016-12-30 09:54:54 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-12-31 08:22:19 +0700 |
commit | 8f7285aff9d5042f6a178bc51e7d77998896034d (patch) | |
tree | ac09da9a679e7b7135b56fb1ab57b1689dacb36d /development/libodb-boost/README | |
parent | e0ae85e278bb5c0b43fc97ace8498199ddfdc690 (diff) |
development/libodb-boost: Added (C++ ORM Boost Profile Libraries).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/libodb-boost/README')
-rw-r--r-- | development/libodb-boost/README | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/development/libodb-boost/README b/development/libodb-boost/README new file mode 100644 index 0000000000000..ab119b383f973 --- /dev/null +++ b/development/libodb-boost/README @@ -0,0 +1,18 @@ +ODB is an open-source, cross-platform, and cross-database object- +relational mapping (ORM) system for C++. It allows you to persist +C++ objects to a relational database without having to deal with +tables, columns, or SQL and without manually writing any mapping +code. + +ODB supports MySQL, SQLite, PostgreSQL, Oracle, and +Microsoft SQL Server relational databases as well as C++98/03 and +C++11 language standards. It also comes with optional profiles +for Boost and Qt which allow you to seamlessly use value types, +containers, and smart pointers from these libraries in your +persistent C++ classes. + +The ODB system consists of several packages. The essential packages +are the ODB compiler (odb), the common runtime library (libodb), +and the database-specific runtime library (libodb-<database>). +For example, if you are planning to use MySQL, then the set of +packages that you will need would be: odb, libodb, and libodb-mysql. |