-2
我試圖連接到名爲「galaxydatabase」的postgresql數據庫,並遇到未處理的異常。 源代碼:使用wt C++庫連接到postgresql數據庫時出現異常?
#include <Wt/Dbo/Dbo>
#include <Wt/Dbo/backend/Postgres>
namespace dbo = Wt::Dbo;
void run()
{
dbo::backend::Postgres po;
po.connect("galaxydatabase");
// or
//dbo::backend::Postgres po("galaxydatabase"); // the same exception???
}
int main(int argc, char **argv)
{
run();
}
您收到的確切例外是哪一個? –