summaryrefslogtreecommitdiff
path: root/libsql/test/main.cpp
blob: 9b35ff35a881afbef2e58237b9d7a787f70688a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);

};