Re: How to use MySQL with Maemo 5?

2010-03-30 Thread Ram Kurvakat
: Sascha Mäkelä Sent: 03/30/10 06:57 AM To: maemo-developers Subject: How to use MySQL with Maemo 5? I'm trying to retrieve data from a MySQL server. I use the following example code (with some slight modifications): Code: QSqlDatabase db = QSqlDatabase::addDatabase(QMYSQL); db.setHostName(bigblue

Re: How to use MySQL with Maemo 5?

2010-03-30 Thread Ram Kurvakat
07:52 AM To: Sascha Mäkelä, maemo-developers Subject: Re: How to use MySQL with Maemo 5? have you tried to install libqt4 mysql plugin ? This should help in case you havent already seen it http://doc.trolltech.com/4.6/sql-driver.html#qmysql http://doc.trolltech.com/4.6/sql-driver.html#qmysql

Re: How to use MySQL with Maemo 5?

2010-03-30 Thread Daniil Ivanov
: 03/30/10 06:57 AM To: maemo-developers Subject: How to use MySQL with Maemo 5? I'm trying to retrieve data from a MySQL server. I use the following example code (with some slight modifications): Code: QSqlDatabase db = QSqlDatabase::addDatabase(QMYSQL); db.setHostName

How to use MySQL with Maemo 5?

2010-03-29 Thread Sascha Mäkelä
I'm trying to retrieve data from a MySQL server. I use the following example code (with some slight modifications): Code: QSqlDatabase db = QSqlDatabase::addDatabase(QMYSQL); db.setHostName(bigblue); db.setDatabaseName(flightdb); db.setUserName(acarlson);