PGresult *PQexec(PGconn *conn,const char *command); PQexec接受const char *为参数,可是如果sql中有中文等字符怎么办? 解决方法: 把含有中文的字符串转换成utf8编码的char *即可。