void Insert(PGconn *conn)
{
for(int i=0;i<100;i++)
std::string sSQL;
sSQL.append("insert into data (var,var2) values(i,121)");
}
我参考 http://www.askyb.com/cpp/c-postgresql-example/ 它不能工作。谁能帮助我?我想插入到 poastgresql。Linux Ubuntu 13.04 g++ 编译器
void Insert(PGconn *conn)
{
for(int i=0;i<100;i++)
std::string sSQL;
sSQL.append("insert into data (var,var2) values(i,121)");
}
我参考 http://www.askyb.com/cpp/c-postgresql-example/ 它不能工作。谁能帮助我?我想插入到 poastgresql。Linux Ubuntu 13.04 g++ 编译器