author | zecke <zecke> | 2002-08-27 20:17:50 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-08-27 20:17:50 (UTC) |
commit | 86352e32f449ecf00de254674b7dcac72bc34a14 (patch) (unidiff) | |
tree | b5803b69ca00dceea1e2a76a5eee390f0748f27e /libsql/osqldriver.cpp | |
parent | 1398b50ffc193bc9ab69ebe198aeda847c39516e (diff) | |
download | opie-86352e32f449ecf00de254674b7dcac72bc34a14.zip opie-86352e32f449ecf00de254674b7dcac72bc34a14.tar.gz opie-86352e32f449ecf00de254674b7dcac72bc34a14.tar.bz2 |
Initial check in of the light wrapper library
around normal SQL
The first driver implementation is a SQLite version
-rw-r--r-- | libsql/osqldriver.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libsql/osqldriver.cpp b/libsql/osqldriver.cpp new file mode 100644 index 0000000..258c116 --- a/dev/null +++ b/libsql/osqldriver.cpp | |||
@@ -0,0 +1,13 @@ | |||
1 | #include <qpe/qlibrary.h> | ||
2 | |||
3 | #include "osqldriver.h" | ||
4 | |||
5 | OSQLDriver::OSQLDriver( QLibrary* lib ) | ||
6 | : QObject(), m_lib(lib) { | ||
7 | } | ||
8 | OSQLDriver::~OSQLDriver() { | ||
9 | delete m_lib; | ||
10 | } | ||
11 | bool OSQLDriver::sync() { | ||
12 | return true; | ||
13 | } | ||