String database
The name of the database.
List<E> parameterSets
The parameter set for the batch operation.
The SQL statement is executed as many times as the number of parameter sets provided. To execute a SQL statement with no parameters, use one of the following options:
Specify one or more empty parameter sets.
Use the ExecuteStatement operation instead of the BatchExecuteStatement operation.
Array parameters are not supported.
String resourceArn
The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
String schema
The name of the database schema.
String secretArn
The name or ARN of the secret that enables access to the DB cluster.
String sql
The SQL statement to run.
String transactionId
The identifier of a transaction that was started by using the BeginTransaction operation. Specify
the transaction ID of the transaction that you want to include the SQL statement in.
If the SQL statement is not part of a transaction, don't set this parameter.
String transactionId
The transaction ID of the transaction started by the call.
Integer arrayBaseColumnType
The type of the column.
Boolean isAutoIncrement
A value that indicates whether the column increments automatically.
Boolean isCaseSensitive
A value that indicates whether the column is case-sensitive.
Boolean isCurrency
A value that indicates whether the column contains currency values.
Boolean isSigned
A value that indicates whether an integer column is signed.
String label
The label for the column.
String name
The name of the column.
Integer nullable
A value that indicates whether the column is nullable.
Integer precision
The precision value of a decimal number column.
Integer scale
The scale value of a decimal number column.
String schemaName
The name of the schema that owns the table that includes the column.
String tableName
The name of the table that includes the column.
Integer type
The type of the column.
String typeName
The database-specific data type of the column.
String transactionStatus
The status of the commit operation.
String awsSecretStoreArn
The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.
String database
The name of the database.
String dbClusterOrInstanceArn
The ARN of the Aurora Serverless DB cluster.
String schema
The name of the database schema.
String sqlStatements
One or more SQL statements to run on the DB cluster.
You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.
Boolean continueAfterTimeout
A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.
For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.
String database
The name of the database.
Boolean includeResultMetadata
A value that indicates whether to include metadata in the results.
List<E> parameters
The parameters for the SQL statement.
Array parameters are not supported.
String resourceArn
The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
ResultSetOptions resultSetOptions
Options that control how the result set is returned.
String schema
The name of the database schema.
String secretArn
The name or ARN of the secret that enables access to the DB cluster.
String sql
The SQL statement to run.
String transactionId
The identifier of a transaction that was started by using the BeginTransaction operation. Specify
the transaction ID of the transaction that you want to include the SQL statement in.
If the SQL statement is not part of a transaction, don't set this parameter.
List<E> columnMetadata
Metadata for the columns included in the results.
List<E> generatedFields
Values for fields generated during the request.
<note> <p>The <code>generatedFields</code> data isn't supported by Aurora PostgreSQL. To get the values of generated fields, use the <code>RETURNING</code> clause. For more information, see <a href="https://www.postgresql.org/docs/10/dml-returning.html">Returning Data From Modified Rows</a> in the PostgreSQL documentation.</p> </note>
Long numberOfRecordsUpdated
The number of records updated by the request.
List<E> records
The records returned by the SQL statement.
ArrayValue arrayValue
An array of values.
ByteBuffer blobValue
A value of BLOB data type.
Boolean booleanValue
A value of Boolean data type.
Double doubleValue
A value of double data type.
Boolean isNull
A NULL value.
Long longValue
A value of long data type.
String stringValue
A value of string data type.
List<E> records
The records in the result set.
ResultSetMetadata resultSetMetadata
The result-set metadata in the result set.
String decimalReturnType
A value that indicates how a field of DECIMAL type is represented in the response. The value of
STRING, the default, specifies that it is converted to a String value. The value of
DOUBLE_OR_LONG specifies that it is converted to a Long value if its scale is 0, or to a Double
value otherwise.
Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.
String transactionStatus
The status of the rollback operation.
String name
The name of the parameter.
String typeHint
A hint that specifies the correct object type for data type mapping.
Values:
DECIMAL - The corresponding String parameter value is sent as an object of
DECIMAL type to the database.
TIMESTAMP - The corresponding String parameter value is sent as an object of
TIMESTAMP type to the database. The accepted format is YYYY-MM-DD HH:MM:SS[.FFF].
TIME - The corresponding String parameter value is sent as an object of
TIME type to the database. The accepted format is HH:MM:SS[.FFF].
DATE - The corresponding String parameter value is sent as an object of
DATE type to the database. The accepted format is YYYY-MM-DD.
Field value
The value of the parameter.
Long numberOfRecordsUpdated
The number of records updated by a SQL statement.
ResultFrame resultFrame
The result set of the SQL statement.
Long dbConnectionId
The database connection ID that executed the SQL statement.
List<E> arrayValues
An array of column values.
Long bigIntValue
A value for a column of big integer data type.
Boolean bitValue
A value for a column of BIT data type.
ByteBuffer blobValue
A value for a column of BLOB data type.
Double doubleValue
A value for a column of double data type.
Integer intValue
A value for a column of integer data type.
Boolean isNull
A NULL value.
Float realValue
A value for a column of real data type.
String stringValue
A value for a column of string data type.
StructValue structValue
A value for a column of STRUCT data type.
Copyright © 2020. All rights reserved.