postgresql – libpq,带参数插入

postgresql – libpq,带参数插入,第1张

概述我想知道我是否可以使用libpq直接从C/C++进行参数化查询,而不是使用字符串,如果这样的代码看起来怎么样? string tblins = "";tblins = "INSERT INTO " + commtable + " " "(vdoc, bdoc, mytime, txml) VALUES (" "'" + cxml.vdoc + "', " 我想知道我是否可以使用libpq直接从C/C++进行参数化查询,而不是使用字符串,如果这样的代码看起来怎么样?

string tblins = "";tblins = "INSERT INTO " + commtable + " "         "(vdoc,bdoc,mytime,txml) VALUES ("         "'" + cxml.vdoc + "',"             + cxml.bdoc + "," //integer         "'" + cxml.mytime + "',"         "'" + cxml.txml + "')";result = PQexec(conn,tblins.c_str());

谢谢.

解决方法 是的,您可以使用PQexecParams函数,如 in the documentation所述.

If parameters are used,they are referred to in the command string as ,,etc. nParams is the number of parameters supplIEd; it is the length of the arrays paramTypes[],paramValues[],paramLengths[],and paramFormats[].

总结

以上是内存溢出为你收集整理的postgresql – libpq,带参数插入全部内容,希望文章能够帮你解决postgresql – libpq,带参数插入所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1159302.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存