blob: a6c721770ed7889c1fdb6044e6a3dcc1c8d587aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Design of OpieSQL
My intention for OpieSQL was to write
a simple c++ interface which would allow
easy use of common database functions on
different backends
How does these goals reflect the current Implementation
-through OSQLManager + OSQLBackEnd I'll be able to change
the default db driver and be able to add new
driver implementations
-OSQLQuery, RawQuery, SelectQuery allows a flexible and
OO way of fast querying databases
-much more ;)
|