From 63b2ca0dbdae190941d60a55c9cff99d4a75a0e1 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 31 May 2021 13:18:17 +0100 Subject: Initial commit of prepstmt, selects, record sets This is full of holes, but all the basics are covered. --- lib/input/mysqlConn.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/input/mysqlConn.h') diff --git a/lib/input/mysqlConn.h b/lib/input/mysqlConn.h index 9e4ec25..2f71262 100644 --- a/lib/input/mysqlConn.h +++ b/lib/input/mysqlConn.h @@ -1,6 +1,7 @@ #ifndef MYGRATE_INPUT_MYSQLCONN_H #define MYGRATE_INPUT_MYSQLCONN_H +#include #include #include #include @@ -14,6 +15,8 @@ namespace MyGrate::Input { void query(const char * const) override; void query(const char * const q, const std::initializer_list &) override; + + DbPrepStmtPtr prepare(const char * const, std::size_t) override; }; } -- cgit v1.2.3