Struct SQLStatement¶
- Defined in File SQLiteHandler.h
Struct Documentation¶
-
struct
SQLStatement¶ Wrapper for sqlite3_stmt which stores the last command issued and the pointer to the statement object.
Public Functions
-
SQLStatement()¶ Default constructor.
-
int
step()¶ Steps the transaction forwards one step.
- Note
- Waits 10 seconds for locks to be released before raising an error if there are problems.
- Return
- the result code of the transaction step
-
void
clearAndReset()¶ Destroys the previous bindings and resets the statement.
-