From 20b3de56573b9e86c6b6041faf684adc8cbb2a45 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Sat, 29 Jan 2005 14:23:27 +0000 Subject: examples to where they belong --- (limited to 'libopie2/examples/opiedb/sqltest/spaltenweise.cpp') diff --git a/libopie2/examples/opiedb/sqltest/spaltenweise.cpp b/libopie2/examples/opiedb/sqltest/spaltenweise.cpp deleted file mode 100644 index c11724c..0000000 --- a/libopie2/examples/opiedb/sqltest/spaltenweise.cpp +++ b/dev/null @@ -1,43 +0,0 @@ -#include - -#include -#include -#include -#include -#include - -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(); - owarn << "testmain" + driver->id() << oendl; - driver->setUrl("/home/ich/spaltenweise"); - if ( driver->open() ) { - owarn << "could open" << oendl; - }else - owarn << "wasn't able to open" << oendl; - OSQLRawQuery *raw = new OSQLRawQuery("create table todolist(" - "uid,categories,completed," - "progress,summary,HasDate," - "DateDay,DateMonth,DateYear," - "priority,description)" ); - - OSQLResult res = driver->query( raw ); - delete raw; - for (int i = 0; i< 10000; i++ ) { - int uid = i; - OSQLRawQuery raw("insert into todolist VALUES("+ - QString::number(uid)+ ",'-122324;-12132',1,100,"+ - "'Summary234-"+QString::number(uid)+"',1,5,8,2002,1,"+ - "'Description\n12344')"); - OSQLResult res = driver->query( &raw ); - - } - return 0; -}; -- cgit v0.9.0.2