diff options
Diffstat (limited to 'libsqlitepp/sqlite-command.h')
-rw-r--r-- | libsqlitepp/sqlite-command.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libsqlitepp/sqlite-command.h b/libsqlitepp/sqlite-command.h index abf02ee..1bf93c4 100644 --- a/libsqlitepp/sqlite-command.h +++ b/libsqlitepp/sqlite-command.h @@ -32,6 +32,9 @@ namespace SQLite { void bindNull(unsigned int) override; protected: + template<typename V, typename BinderFunction> + void bindWith(unsigned int n, const V & v, BinderFunction binder) const; + const Connection * c; sqlite3_stmt * stmt; }; |