Method sqlite.Statement(+ 1 overload)
Overload
Returns new sqliteStatement(this, sql)
.
public sqliteStatement Statement(string sql)
Parameters
sql (string)
Single SQL statement. This function does not execute it. |
Returns
Exceptions
SLException
Failed. |
NotSupportedException
sql contains more than single SQL statement. |
See Also
Overload(top)
Returns new sqliteStatement(this, sql).BindAll(bind)
.
public sqliteStatement Statement(string sql, params object[] bind)
Parameters
sql (string)
Single SQL statement. This function does not execute it. |
bind (object[])
Values that will replace |
Returns
Exceptions
NotSupportedException
|
SLException
Failed. |