ODB
From Code Synthesis Wiki
(Difference between revisions)
Revision as of 18:00, 14 March 2012 Boris (Talk | contribs) (→Wiki Resources - Add link to page on using ODB with Visual Studio) ← Previous diff |
Revision as of 12:27, 18 July 2012 Boris (Talk | contribs) (Add links to ODB blog posts) Next diff → |
||
Line 1: | Line 1: | ||
[http://www.codesynthesis.com/products/odb/ ODB] is an 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. | [http://www.codesynthesis.com/products/odb/ ODB] is an 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. | ||
+ | |||
+ | == Official Resources == | ||
+ | * [http://www.codesynthesis.com/products/odb/ ODB home page] | ||
+ | * [http://www.codesynthesis.com/products/odb/doc.xhtml ODB documentation] | ||
== Wiki Resources == | == Wiki Resources == | ||
Line 6: | Line 10: | ||
* [[Using ODB with Eclipse CDT]] | * [[Using ODB with Eclipse CDT]] | ||
* [[Using ODB with Netbeans]] | * [[Using ODB with Netbeans]] | ||
+ | |||
+ | == Blog Posts and Articles == | ||
+ | * [http://codesynthesis.com/~boris/blog/2012/03/27/cxx11-support-in-odb/ C++11 support in ODB] | ||
+ | * [http://www.codesynthesis.com/~boris/blog/2012/07/18/custom-database-to-cxx-type-mapping-in-odb/ Custom database to C++ type mapping in ODB] | ||
== External Resources == | == External Resources == | ||
* [http://blip.tv/boostcon/object-relational-mapping-with-odb-and-boost-5364825 "Object-Relational Mapping with ODB and Boost" talk video], BoostCon 2011 ([http://blip.tv/file/get/Boostcon-ObjectrelationalMappingWithODBAndBoost586.mp4 direct link to .mp4 file]) | * [http://blip.tv/boostcon/object-relational-mapping-with-odb-and-boost-5364825 "Object-Relational Mapping with ODB and Boost" talk video], BoostCon 2011 ([http://blip.tv/file/get/Boostcon-ObjectrelationalMappingWithODBAndBoost586.mp4 direct link to .mp4 file]) | ||
* [https://github.com/boostcon/2011_presentations/raw/master/thu/orm_with_odb_and_boost.pdf "Object-Relational Mapping with ODB and Boost" talk slides], BoostCon 2011 | * [https://github.com/boostcon/2011_presentations/raw/master/thu/orm_with_odb_and_boost.pdf "Object-Relational Mapping with ODB and Boost" talk slides], BoostCon 2011 | ||
- | |||
- | == Official Resources == | ||
- | * [http://www.codesynthesis.com/products/odb/ ODB home page] | ||
- | * [http://www.codesynthesis.com/products/odb/doc.xhtml ODB documentation] |
Revision as of 12:27, 18 July 2012
ODB is an 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.
Contents |
Official Resources
Wiki Resources
- Using ODB with Microsoft Visual Studio
- Using ODB with CMake
- Using ODB with Eclipse CDT
- Using ODB with Netbeans