You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.3 KiB
122 lines
3.3 KiB
|
|
#include <kdebug.h>
|
|
#include <kinstance.h>
|
|
|
|
#include <kexidb/drivermanager.h>
|
|
#include <kexidb/driver.h>
|
|
#include <kexidb/connection.h>
|
|
#include <kexidb/cursor.h>
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
TDEInstance instance("newapi");
|
|
KexiDB::DriverManager manager;
|
|
TQStringList names = manager.driverNames();
|
|
kdDebug() << "DRIVERS: " << endl;
|
|
for (TQStringList::ConstIterator it = names.constBegin(); it != names.constEnd() ; ++it)
|
|
kdDebug() << *it << endl;
|
|
if (manager.error()) {
|
|
kdDebug() << manager.errorMsg() << endl;
|
|
return 1;
|
|
}
|
|
|
|
//get driver
|
|
KexiDB::Driver *driver = manager.driver("mySQL");
|
|
if (manager.error()) {
|
|
kdDebug() << manager.errorMsg() << endl;
|
|
return 1;
|
|
}
|
|
|
|
//connection data that can be later reused
|
|
KexiDB::ConnectionData conn_data;
|
|
|
|
conn_data.userName="root";
|
|
if (argc>1)
|
|
conn_data.password=argv[1];
|
|
else
|
|
conn_data.password="mysql";
|
|
conn_data.hostName="localhost";
|
|
|
|
KexiDB::Connection *conn = driver->createConnection(conn_data);
|
|
if (driver->error()) {
|
|
kdDebug() << driver->errorMsg() << endl;
|
|
return 1;
|
|
}
|
|
if (!conn->connect()) {
|
|
kdDebug() << conn->errorMsg() << endl;
|
|
return 1;
|
|
}
|
|
if (!conn->useDatabase( "test" )) {
|
|
kdDebug() <<"use db:"<< conn->errorMsg() << endl;
|
|
return 1;
|
|
}
|
|
|
|
kdDebug()<<"Creating first cursor"<<endl;
|
|
KexiDB::Cursor *c=conn->executeQuery("select * from Applications");
|
|
if (!c) kdDebug()<<conn->errorMsg()<<endl;
|
|
kdDebug()<<"Creating second cursor"<<endl;
|
|
KexiDB::Cursor *c2=conn->executeQuery("select * from Applications");
|
|
if (!c2) kdDebug()<<conn->errorMsg()<<endl;
|
|
|
|
TQStringList l=conn->databaseNames();
|
|
if (l.isEmpty()) kdDebug()<<conn->errorMsg()<<endl;
|
|
kdDebug()<<"Databases:"<<endl;
|
|
for (TQStringList::ConstIterator it = l.constBegin(); it != l.constEnd() ; ++it)
|
|
kdDebug() << *it << endl;
|
|
|
|
if (c) {
|
|
while (c->moveNext()) {
|
|
kdDebug()<<"Cursor: Value(0)"<<c->value(0).asString()<<endl;
|
|
kdDebug()<<"Cursor: Value(1)"<<c->value(1).asString()<<endl;
|
|
}
|
|
kdDebug()<<"Cursor error:"<<c->errorMsg()<<endl;
|
|
}
|
|
if (c2) {
|
|
while (c2->moveNext()) {
|
|
kdDebug()<<"Cursor2: Value(0)"<<c2->value(0).asString()<<endl;
|
|
kdDebug()<<"Cursor2: Value(1)"<<c2->value(1).asString()<<endl;
|
|
}
|
|
}
|
|
if (c) {
|
|
kdDebug()<<"Cursor::prev"<<endl;
|
|
while (c->movePrev()) {
|
|
kdDebug()<<"Cursor: Value(0)"<<c->value(0).asString()<<endl;
|
|
kdDebug()<<"Cursor: Value(1)"<<c->value(1).asString()<<endl;
|
|
|
|
}
|
|
kdDebug()<<"up/down"<<endl;
|
|
c->moveNext();
|
|
kdDebug()<<"Cursor: Value(0)"<<c->value(0).asString()<<endl;
|
|
kdDebug()<<"Cursor: Value(1)"<<c->value(1).asString()<<endl;
|
|
c->moveNext();
|
|
kdDebug()<<"Cursor: Value(0)"<<c->value(0).asString()<<endl;
|
|
kdDebug()<<"Cursor: Value(1)"<<c->value(1).asString()<<endl;
|
|
c->movePrev();
|
|
kdDebug()<<"Cursor: Value(0)"<<c->value(0).asString()<<endl;
|
|
kdDebug()<<"Cursor: Value(1)"<<c->value(1).asString()<<endl;
|
|
c->movePrev();
|
|
kdDebug()<<"Cursor: Value(0)"<<c->value(0).asString()<<endl;
|
|
kdDebug()<<"Cursor: Value(1)"<<c->value(1).asString()<<endl;
|
|
|
|
}
|
|
#if 0
|
|
KexiDB::Table *t = conn->tableSchema( "persons" );
|
|
if (t)
|
|
t->debug();
|
|
t = conn->tableSchema( "cars" );
|
|
if (t)
|
|
t->debug();
|
|
|
|
// conn->tableNames();
|
|
|
|
if (!conn->disconnect()) {
|
|
kdDebug() << conn->errorMsg() << endl;
|
|
return 1;
|
|
}
|
|
debug("before del");
|
|
delete conn;
|
|
debug("after del");
|
|
#endif
|
|
return 0;
|
|
}
|