Options of the SQL statement.
Parameters of the SQL. You may define parameter placeholders in the statement with the ?
character.
For every placeholder, a value must be provided. When the method is called, the contents of the list are copied.
Subsequent changes to the original list don't change the statement parameters.
SQL string. The SQL string cannot be empty. SQL string placeholder character is question mark(?
). A RangeError
is thrown during execute if sql
is not valid.
Generated using TypeDoc
Represents an SQL statement. This can be used to prepare SQL statement before SqlService.execute.
Properties are read once before the execution is started. Changes to properties do not affect the behavior of already running statements.