From 15c1e5566f7ad8448985ca6e52805ceb4ec389a8 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 24 May 2021 01:01:30 +0100 Subject: Basic support for queries with bound parameters Bit of a reshuffle to make the types not DB specific, add some basic tests over query execution, no selects yet and no validation anything is actually right. --- lib/row.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/row.h') diff --git a/lib/row.h b/lib/row.h index a40b1b2..35d8bcd 100644 --- a/lib/row.h +++ b/lib/row.h @@ -1,7 +1,7 @@ #ifndef MYGRATE_ROW_H #define MYGRATE_ROW_H -#include "mysql_types.h" +#include "dbTypes.h" #include #include namespace MyGrate { @@ -11,7 +11,7 @@ struct st_mariadb_rpl_rows_event; struct st_mariadb_rpl_table_map_event; namespace MyGrate { - class Row : public std::vector { + class Row : public std::vector { public: Row(const st_mariadb_rpl_rows_event &, const st_mariadb_rpl_table_map_event &); -- cgit v1.2.3