-
Notifications
You must be signed in to change notification settings - Fork 16
API Statement
Michael Anderson edited this page Dec 13, 2017
·
2 revisions
A Statement takes an SQL expression as a string and makes it executable or queryable against a database table.
connection.createStatement( sql : string )
Type: string
The SQL expression used to form the statement.
Syntax
connection.createStatement( ...args: Array<any> ) => Array<any>
Type: Array<any>
The SQL string in the dialect of the underlying driver, with the exception that the parameter token is always a question mark ?
.
Type: Statement
A statement object which will be used for further database actions. This statement is reusable.