文档首页/ 云数据库 GaussDB/ 开发指南(集中式_V2.0-2.x)/ 应用程序开发教程/ 基于libpq开发/ libpq接口参考/ 数据库执行语句函数/ PQexecPreparedBatch
更新时间:2025-02-27 GMT+08:00
PQexecPreparedBatch
功能描述
发送一个请求来用给定的批量参数执行一个预备语句,并且等待结果。
原型
PGresult* PQexecPreparedBatch(PGconn* conn,
const char* stmtName,
int nParams,
int nBatchCount,
const char* const* paramValues,
const int* paramLengths,
const int* paramFormats,
int resultFormat); 参数
| 关键字 | 参数说明 |
|---|---|
| conn | 连接句柄。 |
| stmtName | stmt名称,可以用""或者NULL来引用未命名语句,否则它必须是一个现有预备语句的名字。 |
| nParams | 参数个数。 |
| nBatchCount | 批量数。 |
| paramValues | 参数的实际值。 |
| paramLengths | 参数的实际数据长度。 |
| paramFormats | 参数的格式(文本或二进制)。 |
| resultFormat | 结果的格式(文本或二进制)。 |
返回值
PGresult类型指针。
父主题: 数据库执行语句函数