Isc_dsql_batch_execute_immed
Go Up to API Function Reference
The isc_dsql_batch_execute_immed
function is used to execute a group of INSERT
, UPDATE
, DELETE
or DDL commands. Grouping SQL statements into batches reduces the amount of network traffic between the client and the database server.
- Note: A related function, isc_dsql_batch_execute, allows you to batch the data used in a parameterized SQL statement. For API information about this related function, see isc_dsql_batch_execute. For an introduction to batch updates, see “Database Statistics and Connection Monitoring” in the InterBase Operations Guide.
The signature for isc_dsql_batch_execute_immed
is:
Syntax
ISC_STATUS isc_dsql_batch_execute_immed(ISC_STATUS *status_vector,
isc_db_handle *db_handle, isc_tr_handle *tr_handle, int dialect,
ISC_ULONG number_of_sql, char[] *sql, ISC_ULONG *rows_affected);
The meaning of each parameter is explained in the following table:
Argument | Description |
---|---|
|
The address of an array of type The respective |
|
The address of the database handle. |
|
The address of the transaction handle. |
|
The SQL dialect to use for the statements in the batch update. |
|
The number of SQL statements included in the batch update. This argument reflects the number of strings in the |
|
An array of NULL-terminated strings. Each string is an SQL statement to execute in the batch update. The SQL statements do not need to be terminated with semicolons. Instead, each SQL statement is terminated by a C NULL character. |
|
A pre-allocated array of type |
If a statement fails, the ISC_STATUS
will be set, and the corresponding entry in the rows_affected array will be set to -1, or 0xFFFFFFFF
.