diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-15 15:10:58 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-15 15:10:58 +0100 |
commit | 2d7c7d4f13c21d7c5b259c8724d3add1f506dd12 (patch) | |
tree | 98e50ec84dc594abd72c6981a3fc115c9fc3fb41 /libmysqlpp/my-connection.h | |
parent | Standalone split (diff) | |
download | libdbpp-mysql-2d7c7d4f13c21d7c5b259c8724d3add1f506dd12.tar.bz2 libdbpp-mysql-2d7c7d4f13c21d7c5b259c8724d3add1f506dd12.tar.xz libdbpp-mysql-2d7c7d4f13c21d7c5b259c8724d3add1f506dd12.zip |
C++17libdbpp-mysql-1.2.0
Upgrade everything to C++17
Diffstat (limited to 'libmysqlpp/my-connection.h')
-rw-r--r-- | libmysqlpp/my-connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmysqlpp/my-connection.h b/libmysqlpp/my-connection.h index f6acb39..0065579 100644 --- a/libmysqlpp/my-connection.h +++ b/libmysqlpp/my-connection.h @@ -26,8 +26,8 @@ namespace MySQL { DB::BulkDeleteStyle bulkDeleteStyle() const override; DB::BulkUpdateStyle bulkUpdateStyle() const override; - DB::SelectCommand * newSelectCommand(const std::string & sql, const DB::CommandOptions *) override; - DB::ModifyCommand * newModifyCommand(const std::string & sql, const DB::CommandOptions *) override; + DB::SelectCommandPtr select(const std::string & sql, const DB::CommandOptionsCPtr &) override; + DB::ModifyCommandPtr modify(const std::string & sql, const DB::CommandOptionsCPtr &) override; void beginBulkUpload(const char *, const char *) override; void endBulkUpload(const char *) override; |