StactiveRecord is a C++ library designed to make simple database use simple. It was inspired by Ruby on Rail's Active Record, however, no similar look, feel, or performance is guaranteed.
StactiveRecord uses an Object-relational mapping pattern to represent records as objects. It also provides persistent (basic) object relationships (one to many, many to many, one to one).
Requirements:
· libsqlite: SQLite C libs
· mysql c libs: distributed with the mysql client program
· postgres c libs: come with PostgreSQL core
Compile
Enter the StactiveRecord directory and type:
./configure
You can use the following to see additional configuration options:
./configure --help
Then:
make
su root
make install
Product's homepage