summaryrefslogtreecommitdiff
path: root/libsql/osqlquery.cpp
authorzecke <zecke>2002-08-27 20:17:50 (UTC)
committer zecke <zecke>2002-08-27 20:17:50 (UTC)
commit86352e32f449ecf00de254674b7dcac72bc34a14 (patch) (unidiff)
treeb5803b69ca00dceea1e2a76a5eee390f0748f27e /libsql/osqlquery.cpp
parent1398b50ffc193bc9ab69ebe198aeda847c39516e (diff)
downloadopie-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
Diffstat (limited to 'libsql/osqlquery.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libsql/osqlquery.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/libsql/osqlquery.cpp b/libsql/osqlquery.cpp
new file mode 100644
index 0000000..ecd53f2
--- a/dev/null
+++ b/libsql/osqlquery.cpp
@@ -0,0 +1,17 @@
1
2#include "osqlquery.h"
3
4OSQLQuery::OSQLQuery() {
5}
6OSQLQuery::~OSQLQuery() {
7}
8
9OSQLRawQuery::OSQLRawQuery(const QString& query)
10 : OSQLQuery(), m_query( query ) {
11
12}
13OSQLRawQuery::~OSQLRawQuery() {
14}
15QString OSQLRawQuery::query()const {
16 return m_query;
17}