sqlite3_bind_XXX wrapper.
Bind all arguments according to their type, in order.
Returns the value of a column by its index, as the given D type.
sqlite3_column_count wrapper.
Returns the column name by its index, as a D string.
Returns the value of all columns, as the given D types.
sqlite3_data_count wrapper.
Binds the given arguments and executes the prepared statement, discarding the result.
Returns the value of all columns, as an array of the given D type (string by default).
Returns the value of all columns as an associative array, with the column names as the key, and the values with given D type (string by default).
Binds the given arguments and executes the prepared statement, returning the results as an iterator.
Calls sqlite3_reset.
Return "true" if a row is available, "false" if done.
Binds the given arguments and executes the prepared statement, returning the results as an iterator.
sqlite3_stmt* wrapper.