summaryrefslogtreecommitdiff
path: root/libopie2/examples/opiedb/sqltest/spaltenweise.cpp
Side-by-side diff
Diffstat (limited to 'libopie2/examples/opiedb/sqltest/spaltenweise.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/examples/opiedb/sqltest/spaltenweise.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libopie2/examples/opiedb/sqltest/spaltenweise.cpp b/libopie2/examples/opiedb/sqltest/spaltenweise.cpp
index e1a4d5d..c11724c 100644
--- a/libopie2/examples/opiedb/sqltest/spaltenweise.cpp
+++ b/libopie2/examples/opiedb/sqltest/spaltenweise.cpp
@@ -7,30 +7,30 @@
#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() );
+ owarn << "testmain" + driver->id() << oendl;
driver->setUrl("/home/ich/spaltenweise");
if ( driver->open() ) {
- qWarning("could open");
+ owarn << "could open" << oendl;
}else
- qWarning("wasn't able to open");
+ 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,"+