我可以正确使用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++ 代码不起作用,为什么?