文档首页/ 云数据库 GaussDB/ 开发指南(分布式_V2.0-8.x)/ 应用程序开发教程/ 基于libpq开发/ libpq接口参考/ 数据库执行语句函数/ PQexecParamsBatch
更新时间:2026-03-23 GMT+08:00
PQexecParamsBatch
功能描述
执行一个批量绑定参数的命令。
原型
PGresult* PQexecParamsBatch(PGconn* conn,
const char* command,
int nParams,
int nBatch,
const Oid* paramTypes,
const char* const* paramValues,
const int* paramLengths,
const int* paramFormats,
int resultFormat); 参数
| 关键字 | 参数说明 |
|---|---|
| conn | 连接句柄。 |
| command | SQL文本串。 |
| nParams | 绑定参数的个数。 |
| nBatch | 批量操作数。 |
| paramTypes | 绑定参数的类型。 |
| paramValues | 绑定参数的值。 |
| paramLengths | 参数长度。 须知: 下列情况中,参数长度强制使用paramLengths中对应的值:
此时paramLengths不允许为空,并且参数长度的正确性须由调用者自行保证。 |
| paramFormats | 参数格式(文本或二进制)。 |
| resultFormat | 返回结果格式(文本或二进制)。 |
返回值
PGresult类型指针。
父主题: 数据库执行语句函数