run

fun run(vararg anonymousParameters: SupportedValueType): StatementResultingChanges(source)

This method executes a prepared statement and returns an object summarizing the resulting changes. The prepared statement parameters are bound using the values in namedParameters and anonymousParameters.

Since

v22.5.0

Parameters

namedParameters

An optional object used to bind named parameters. The keys of this object are used to configure the mapping.

anonymousParameters

Zero or more values to bind to anonymous parameters.


fun run(namedParameters: ReadonlyRecord<String, SupportedValueType>, vararg anonymousParameters: SupportedValueType): StatementResultingChanges(source)