From 228ac4047faf9a21cf867706e8f3e2da0d296434 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 1 Jan 2017 18:43:02 +0000 Subject: API change to pass command options through --- libmysqlpp/my-connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmysqlpp/my-connection.cpp') diff --git a/libmysqlpp/my-connection.cpp b/libmysqlpp/my-connection.cpp index c25a97b..acc89cd 100644 --- a/libmysqlpp/my-connection.cpp +++ b/libmysqlpp/my-connection.cpp @@ -128,13 +128,13 @@ MySQL::Connection::ping() const DB::SelectCommand * -MySQL::Connection::newSelectCommand(const std::string & sql) +MySQL::Connection::newSelectCommand(const std::string & sql, const DB::CommandOptions *) { return new SelectCommand(this, sql); } DB::ModifyCommand * -MySQL::Connection::newModifyCommand(const std::string & sql) +MySQL::Connection::newModifyCommand(const std::string & sql, const DB::CommandOptions *) { return new ModifyCommand(this, sql); } -- cgit v1.2.3