author | zecke <zecke> | 2002-08-27 20:17:50 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-08-27 20:17:50 (UTC) |
commit | 86352e32f449ecf00de254674b7dcac72bc34a14 (patch) (side-by-side diff) | |
tree | b5803b69ca00dceea1e2a76a5eee390f0748f27e /libsql/test/main.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/test/main.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libsql/test/main.cpp b/libsql/test/main.cpp new file mode 100644 index 0000000..9b35ff3 --- a/dev/null +++ b/libsql/test/main.cpp @@ -0,0 +1,29 @@ +#include <qdir.h> + +#include <qpe/qpeapplication.h> +#include "../osqlmanager.h" +#include "../osqlquery.h" +#include "../osqldriver.h" +#include "../osqlresult.h" + +int main( int argc, char* argv[] ) { + +QPEApplication app( argc, argv ); +OSQLManager man; +man.registerPath( QDir::currentDirPath() ); +OSQLBackEnd::ValueList list = man.queryBackEnd(); + +OSQLDriver *driver = man.standard(); + qWarning("testmain" + driver->id() ); + driver->setUrl("/home/ich/test2vhgytry"); + if ( driver->open() ) { + qWarning("could open"); + }else + qWarning("wasn't able to open"); + OSQLRawQuery raw("select * from t2" ); + OSQLResult res = driver->query( &raw ); + + OSQLRawQuery raw2( "insert into t2 VALUES(ROWID,'Meine Mutter') "); + res = driver->query(&raw2); + +}; |