Starts a SQL transaction.
rdsdataservice_begin_transaction(database, resourceArn, schema,
secretArn)
The name of the database.
[required] The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
The name of the database schema.
[required] The name or ARN of the secret that enables access to the DB cluster.
svc$begin_transaction( database = "string", resourceArn = "string", schema = "string", secretArn = "string" )
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
ExecuteStatement
call with continueAfterTimeout
enabled.