0

我可以正确使用soci连接mysql并执行sql。但是postgresql的相同方法不起作用。这是我的 makefile 和 main.cpp:

    all: main.cpp
    g++ -Wall -g -o main main.cpp  -lpq -lsoci_core -lsoci_postgresql -ldl
clean:

这是 main.cpp:

#include <soci/soci.h>
#include <soci/postgresql/soci-postgresql.h>
#include<iostream>
#include<istream>
#include<ostream>
#include<string>
#include<exception>

using namespace std;
using namespace soci;

int main() {
    try {
        session sql("postgresql://dbname=mydb_0");
        int count ;
        sql<< "select count(*) from student", into(count);
        cout<<"count="<<count<<endl;
    } catch (exception const &e) {
        cerr<<"Error:" <<e.what()<<endl;
    }
}

这是错误输出:

Error:Cannot execute query. Fatal error. 错误:  对关系 student 权限不够
 while executing "select count(*) from student".

我可以"select count(*) from student"在终端中执行 sql 但 C++ 代码不起作用,为什么?

4

1 回答 1

0

好的,我自己解决了这个问题。与其他示例不同,我在 init 语句中添加了“host=127.0.0.1”和“port=5432”。就像这样:session sql(postgresql, "host=127.0.0.1 dbname=exampledb user=postgres password=123 port=5432");。我希望这个解决方案可以帮助其他人。

于 2017-08-14T14:12:07.337 回答