我试图在没有使用ODBC配置系统DSN的情况下连接到postgreSQL数据库,我已经google了很多,我已经尝试了很多连接字符串,但是他们没有工作也许我做错了什么。 这是我尝试过的连接字符串之一:
dbConnectionString = QString("Driver=PostgreSQLUnicode(x64)}|
Server="+DBhost+"|Port=%1|Database="+dbname+"|Uid="+username+"|Pwd="+password+"|ByteaAsLongVarBinary=1").arg(port)
db.setDatabaseName(dbConnectionString);
有什么建议吗?