我开发了一个函数plpgsql,它接受一个xml参数,解析xmls并插入到相应的表中。它完成后返回void。我可以选择functionname('xml string');
这将解析'xml string'并插入到目标表中。
我想使用libpq调用它。
const char *paramValues[1];
paramValues[0] = s.ptr;
char *stm = "select schema.LoadXML($1::xml)";
PGresult *res = PQexecParams(conn, stm, 1, NULL, paramValues, NULL, NULL, 0);
我无法找到任何示例演示如何调用带参数的函数。
提前致谢。
KD