Options
All
  • Public
  • Public/Protected
  • All
Menu

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.

Hierarchy

  • SqlStatement

Index

Properties

Properties

Optional options

options: SqlStatementOptions

Options of the SQL statement.

Optional params

params: any[]

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

sql: string

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