Hello,

i am using QT 4.6.2. Previously, I used post Postgresql version 8.3.12-1. I made the QPSL driver with help from http://www.qtcentre.org/wiki/index.p...ws_using_MinGW
and http://trinity.pearsoncomputing.net/...ql-driver.html and it worked. The problem is that now i have to use Postgresql version 9.0, i used the same instructions from http://www.qtcentre.org/wiki/index.p...ws_using_MinGW
and http://trinity.pearsoncomputing.net/...ql-driver.html and the driver was build. I tested it using the cpp code

#include<QApplication>
#include<QSqlDatabase>
#include<QSqlDriver>
#include<QSqlError>
#include<QDebug>




int main(int argc, char *argv[])
{
QApplication a(argc, argv);
qDebug() << QSqlDatabase::drivers();
return a.exec();
}

But now when i use bool QSqlDatabase:pen() to open the database. I am getting the warning "This version of PostgreSQL is not supported and may not work" and the database tables do not open. I would appreciate help in this regard.

Regards,
Fredy Khan