PQexecPreparedBatch
Function
PQexecPreparedBatch is used to send a request to execute a prepared statement with batches of given parameters and wait for the result.
Prototype
PGresult* PQexecPreparedBatch(PGconn* conn, 
                              const char* stmtName, 
                              int nParams,
                              int nBatchCount,
                              const char* const* paramValues,
                              const int* paramLengths,
                              const int* paramFormats,
                              int resultFormat);
Parameter
Table 1
| stmt name, which can be set to "" or NULL to reference an unnamed statement. Otherwise, it must be the name of an existing prepared statement. | |
Return Value
PGresult pointers
Feedback