summaryrefslogtreecommitdiff
path: root/examples/opiedb/sqltest/spaltenweise.cpp
authormickeyl <mickeyl>2005-01-29 14:09:25 (UTC)
committer mickeyl <mickeyl>2005-01-29 14:09:25 (UTC)
commit7b06e36fe27adc6a4fde2004eac13aaf8c0f0f02 (patch) (side-by-side diff)
tree5b38b6eb9d8430b0a96a2e156995bb421cc1a570 /examples/opiedb/sqltest/spaltenweise.cpp
parent0db5704f66f0d08f9928f749774ee0f37bb0250d (diff)
downloadopie-7b06e36fe27adc6a4fde2004eac13aaf8c0f0f02.zip
opie-7b06e36fe27adc6a4fde2004eac13aaf8c0f0f02.tar.gz
opie-7b06e36fe27adc6a4fde2004eac13aaf8c0f0f02.tar.bz2
examples start to appear here
Diffstat (limited to 'examples/opiedb/sqltest/spaltenweise.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/opiedb/sqltest/spaltenweise.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/examples/opiedb/sqltest/spaltenweise.cpp b/examples/opiedb/sqltest/spaltenweise.cpp
new file mode 100644
index 0000000..c11724c
--- a/dev/null
+++ b/examples/opiedb/sqltest/spaltenweise.cpp
@@ -0,0 +1,43 @@
+#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();
+ 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;
+};