deno.com

method StatementSync.prototype.run

Overload 1

#StatementSync.prototype.run(...anonymousParameters: SQLInputValue[]): StatementResultingChanges

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.

Parameters #

#<span>...anonymousParameters</span>: SQLInputValue[]

Return Type #

Overload 2

#StatementSync.prototype.run(
namedParameters: Record<string, SQLInputValue>,
...anonymousParameters: SQLInputValue[],
): StatementResultingChanges

Parameters #

#namedParameters: Record<string, SQLInputValue>
#<span>...anonymousParameters</span>: SQLInputValue[]

Return Type #