-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
26 lines (18 loc) · 864 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
LiteSQL 0.3.5 - C++ Object-Relational Persistence Framework
-----------------------------------------------------------
LiteSQL is a C++ library that integrates C++ objects tightly to relational
database and thus provides an object persistence layer. LiteSQL supports
SQLite3, PostgreSQL and MySQL as backends. LiteSQL creates tables,
indexes and sequences to database and upgrades schema when needed.
In addition to object persistence, LiteSQL provides object relations which
can be used to model any kind of C++ data structures. Objects can be selected,
filtered and ordered using template- and class-based API with type
checking at compile time.
See HTML documentation for details docs/html/index.html.
Project home page: http://litesql.sourceforge.net
Installation
------------
./configure
make
make install
By Tero Laitinen <[email protected]>