AWS.RDSData (aws-elixir v0.7.0) View Source
Amazon RDS Data Service
Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless DB cluster.
To run these statements, you work with the Data Service API.
For more information about the Data Service API, see Using the Data API for Aurora Serverless in the Amazon Aurora User Guide.
If you have questions or comments related to the Data API, send email to Rds-data-api-feedback@amazon.com.
Link to this section Summary
Functions
Runs a batch SQL statement over an array of data.
Starts a SQL transaction.
Ends a SQL transaction started with the BeginTransaction
operation and commits
the changes.
Runs one or more SQL statements.
Runs a SQL statement against a database.
Performs a rollback of a transaction.
Link to this section Functions
Runs a batch SQL statement over an array of data.
You can run bulk update and insert operations for multiple records using a DML statement with different parameter sets. Bulk operations can provide a significant performance improvement over individual insert and update operations.
If a call isn't part of a transaction because it doesn't include the
transactionID
parameter, changes that result from the call are committed
automatically.
Starts a SQL transaction.
A transaction can run for a maximum of 24 hours. A transaction is terminated and rolled back automatically after 24 hours. A transaction times out if no calls use its transaction ID in three minutes. If a transaction times out before it's committed, it's rolled back automatically. DDL statements inside a transaction cause an implicit commit. We recommend that you run each DDL statement in a separate
ExecuteStatementcall with
continueAfterTimeoutenabled.
Ends a SQL transaction started with the BeginTransaction
operation and commits
the changes.
Runs one or more SQL statements.
This operation is deprecated. Use the BatchExecuteStatement
or
ExecuteStatement
operation.
Runs a SQL statement against a database.
If a call isn't part of a transaction because it doesn't include the
transactionID
parameter, changes that result from the call are committed
automatically.
The response size limit is 1 MB. If the call returns more than 1 MB of response data, the call is terminated.
Performs a rollback of a transaction.
Rolling back a transaction cancels its changes.