hello,
I just came out of one problem (building the mysql plugin) to run into another one: using the plug in. I created a small project. In the properties page for this project (I am using Visual Studio 8) ,in the Linker Properties I supplied the name of the mysql driver .lib file as well as the path to it. I have also copied the mysql plugin .dll to System32. But I get a blank () as the output. ANy help would be appreciated.
#include <QCoreApplication>
#include <QtSql>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
qDebug() << QSqlDatabase::drivers();
return a.exec();
}
But this returned a blank parantheses ( ) as the output
Bookmarks