PreparedStatement
Description
- Derived from
-
Disposable abstract
INativeHandle
| Full source code is included in the Tinman 3D SDK download. |
The PreparedStatement is a wrapper for a native sqlite3_stmt* pointer to a prepared statement.
Public / Methods
Parameter
6 overloads
Binds NULL to the given parameter.
- IOException
-
If an I/O error has occurred.
Binds the given value in to a parameter.
- IOException
-
If an I/O error has occurred.
Binds the given value in to a parameter.
- IOException
-
If an I/O error has occurred.
Binds the given value in to a parameter.
If value in is not a number (see Maths.IsNumber), this method delegates to Parameter1.
- IOException
-
If an I/O error has occurred.
Binds the given value in to a parameter.
If value in is null, this method delegates to Parameter1.
- IOException
-
If an I/O error has occurred.
Binds the given value in to a parameter.
If value in is null, this method delegates to Parameter1.
- IOException
-
If an I/O error has occurred.
Reset
Resets the prepared statement for subsequent re-evaluation.
- IOException
-
If an I/O error has occurred.
- See also
Step
Steps through the result rows of the statement, evaluating it upon the first call.
- IOException
-
If an I/O error has occurred.
- See also
StepDone
Steps through the result rows of the statement, expecting SQLite3.DONE.
- IOException
-
If an I/O error has occurred.
- See also
StepRow
Steps through the result rows of the statement, expecting SQLite3.ROW or SQLite3.DONE.
- IOException
-
If an I/O error has occurred.
- See also