diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-09 12:06:17 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-09 12:06:17 +0100 |
commit | f86b8d2e23339e27d416145ad7b660d66267e151 (patch) | |
tree | 682ee06157befe34571bd1a8acdfab8e4dc27a9c /libpqpp/pq-connection.h | |
parent | Updated compile flags (diff) | |
download | libdbpp-postgresql-f86b8d2e23339e27d416145ad7b660d66267e151.tar.bz2 libdbpp-postgresql-f86b8d2e23339e27d416145ad7b660d66267e151.tar.xz libdbpp-postgresql-f86b8d2e23339e27d416145ad7b660d66267e151.zip |
C++17
Updates code largely in-keeping with updates to be C++17 in line with
libadhocutil and libdbpp.
Diffstat (limited to 'libpqpp/pq-connection.h')
-rw-r--r-- | libpqpp/pq-connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpqpp/pq-connection.h b/libpqpp/pq-connection.h index bb102df..0a7fd0a 100644 --- a/libpqpp/pq-connection.h +++ b/libpqpp/pq-connection.h @@ -29,8 +29,8 @@ namespace PQ { 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::CommandOptions * = nullptr) override; + DB::ModifyCommandPtr modify(const std::string & sql, const DB::CommandOptions * = nullptr) override; int64_t insertId() override; int serverVersion() const; |