The DBConfig object to get the connection from
The SQL to execute - the result of the sql template tag - Should be some sort of mutation
Optional
options: ExecuteOptionsThe oracle options for the SQL execution. options.autoCommit
is forced to true, as the connection is automatically closed afterwards
The result object for the execution
Uses a connection from a connection pool to execute SQL to mutate the database
If you need to run multiple mutations in a single transaction use mutateSQL
with a connection from the pool instead.
The DBConfig object to get the connection from
The SQL to execute - Should be some sort of mutation
Optional
params: BindParametersThe Parameters to pass into the SQL execution
Optional
options: ExecuteOptionsThe oracle options for the SQL execution. options.autoCommit
is forced to true, as the connection is automatically closed afterwards
The result object for the execution
Generated using TypeDoc
Uses a connection from a connection pool to execute SQL to mutate the database
If you need to run multiple mutations in a single transaction use
mutateSQL
with a connection from the pool instead.