summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-connection.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2017-01-01 18:43:02 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2017-01-01 18:43:02 +0000
commita131796676cc7fa0794f663f13d3930ea8258923 (patch)
tree9f04ef40660490af9480c650f41f51d571e60b2a /libsqlitepp/sqlite-connection.h
parentRegister mock db implementations (diff)
downloadlibdbpp-sqlite-a131796676cc7fa0794f663f13d3930ea8258923.tar.bz2
libdbpp-sqlite-a131796676cc7fa0794f663f13d3930ea8258923.tar.xz
libdbpp-sqlite-a131796676cc7fa0794f663f13d3930ea8258923.zip
API change to pass command options throughlibdbpp-sqlite-1.1.0
Diffstat (limited to 'libsqlitepp/sqlite-connection.h')
-rw-r--r--libsqlitepp/sqlite-connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsqlitepp/sqlite-connection.h b/libsqlitepp/sqlite-connection.h
index f3f354d..b428b06 100644
--- a/libsqlitepp/sqlite-connection.h
+++ b/libsqlitepp/sqlite-connection.h
@@ -23,8 +23,8 @@ namespace SQLite {
DB::BulkDeleteStyle bulkDeleteStyle() const override;
DB::BulkUpdateStyle bulkUpdateStyle() const override;
- DB::SelectCommand * newSelectCommand(const std::string & sql) override;
- DB::ModifyCommand * newModifyCommand(const std::string & sql) override;
+ DB::SelectCommand * newSelectCommand(const std::string & sql, const DB::CommandOptions *) override;
+ DB::ModifyCommand * newModifyCommand(const std::string & sql, const DB::CommandOptions *) override;
int64_t insertId() override;