OpenStructure
|
#include <sqlite_wrap.hh>
Public Member Functions | |
PreparedStatement () | |
~PreparedStatement () | |
sqlite3_stmt * | Handle () |
bool | Submit () |
void | BindInt (int col, int value) |
void | BindInt64 (int col, sqlite3_int64 value) |
void | BindText (int col, const String &text) |
void | BindBlob (int col, const char *start, size_t size) |
Friends | |
class | Database |
Definition at line 44 of file sqlite_wrap.hh.
~PreparedStatement | ( | ) |
|
inline |
bind binary blob to placeholder
Definition at line 76 of file sqlite_wrap.hh.
|
inline |
bind integer value to placeholder
Definition at line 60 of file sqlite_wrap.hh.
|
inline |
bind 64 bit integer value to placeholder
Definition at line 65 of file sqlite_wrap.hh.
|
inline |
bind String value to placeholder
Definition at line 70 of file sqlite_wrap.hh.
|
inline |
Definition at line 50 of file sqlite_wrap.hh.
|
inline |
submit query after binding all a parameters.
Definition at line 55 of file sqlite_wrap.hh.
|
friend |
Definition at line 45 of file sqlite_wrap.hh.