diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-05-24 01:01:30 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-05-24 01:01:30 +0100 |
commit | 15c1e5566f7ad8448985ca6e52805ceb4ec389a8 (patch) | |
tree | 14908b221d01cca00975da84656adcea57898620 /lib/row.cpp | |
parent | Minor tidy up of replStream (diff) | |
download | mygrate-15c1e5566f7ad8448985ca6e52805ceb4ec389a8.tar.bz2 mygrate-15c1e5566f7ad8448985ca6e52805ceb4ec389a8.tar.xz mygrate-15c1e5566f7ad8448985ca6e52805ceb4ec389a8.zip |
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.
Diffstat (limited to 'lib/row.cpp')
-rw-r--r-- | lib/row.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/row.cpp b/lib/row.cpp index 65ac591..9d81906 100644 --- a/lib/row.cpp +++ b/lib/row.cpp @@ -1,6 +1,7 @@ #include "row.h" #include "bitset.h" #include "mariadb_repl.h" +#include "mysql_types.h" #include "rawDataReader.h" #include <cstddef> #include <mysql.h> |