author | zecke <zecke> | 2004-03-15 13:36:15 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-03-15 13:36:15 (UTC) |
commit | e1e38dcf2b7d3ad1ad54da6349b196fbdaf778bf (patch) (side-by-side diff) | |
tree | 536994b50a4266fe3770cf833a7637337483f5fb | |
parent | 3fd713c57e921d2969e9a82796c4571185049c7a (diff) | |
download | opie-e1e38dcf2b7d3ad1ad54da6349b196fbdaf778bf.zip opie-e1e38dcf2b7d3ad1ad54da6349b196fbdaf778bf.tar.gz opie-e1e38dcf2b7d3ad1ad54da6349b196fbdaf778bf.tar.bz2 |
Fix up test case
-rw-r--r-- | libopie2/examples/opiedb/sqltest/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libopie2/examples/opiedb/sqltest/main.cpp b/libopie2/examples/opiedb/sqltest/main.cpp index 2ecbf76..adca5fd 100644 --- a/libopie2/examples/opiedb/sqltest/main.cpp +++ b/libopie2/examples/opiedb/sqltest/main.cpp @@ -1,20 +1,21 @@ #include <qdir.h> #include <qpe/qpeapplication.h> #include <opie2/osqlmanager.h> #include <opie2/osqlquery.h> #include <opie2/osqldriver.h> #include <opie2/osqlresult.h> +using namespace Opie::DB; 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"); |