2013-05-31 53 views
0

我在使用Windows 7 x64的VS 2012。我的朋友寫了我這是使用libpq的C++類:在VS 2012項目中使用libpq(PostgreSQL)庫

... 
#include <libpq-fe.h> 
const char* QStrToCStr(QString qstring); 
void ShowInfoBox(QString string); 
QString IToQS(int x); 
QString DToQS(double x); 

class BinderHandler 
{ 
private: 
    PGresult* DBResultPointer; 
    PGconn* DBConnPointer; 
... 
} 
void BinderHandler::DBConnect() 
{ 
    DBConnPointer = PQsetdbLogin(this->pghost,this->pgport, 
           this->pgoptions,this->pgtty, 
           this->dbName,this->login,this->pwd); 
} 
... 

我越來越每次LNK2019錯誤,當我嘗試建立項目。 screenshot我有postgres安裝,我加載了一些路徑項目屬性:screenshot 我希望你能給我一個快速指南如何讓他的代碼工作,我的項目。

+0

請在您的文章的屏幕截圖中包含相關信息。或者將自己的截圖加入你的文章。 [如何發佈圖片](http://stackoverflow.com/editing-help#images) –

回答

1

您必須在鏈接器 - 輸入中明確指定其他庫libpq.lib才能鏈接,而不是僅提供庫路徑。

相關問題