summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-07-04 12:41:11 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-07-04 12:41:11 +0100
commit6c9c161de3f35ff330234e651bec4cfbfaa1cb6b (patch)
tree008383608cdcea72b7088d1e221c4ed04f96bbe7 /lib
parentGet mysql statement errors from the statement, not connection (diff)
downloadmygrate-6c9c161de3f35ff330234e651bec4cfbfaa1cb6b.tar.bz2
mygrate-6c9c161de3f35ff330234e651bec4cfbfaa1cb6b.tar.xz
mygrate-6c9c161de3f35ff330234e651bec4cfbfaa1cb6b.zip
Push mysqldata at into base class
Diffstat (limited to 'lib')
-rw-r--r--lib/input/mysqlRecordSet.cpp6
-rw-r--r--lib/input/mysqlRecordSet.h2
2 files changed, 8 insertions, 0 deletions
diff --git a/lib/input/mysqlRecordSet.cpp b/lib/input/mysqlRecordSet.cpp
index 1585052..494ce13 100644
--- a/lib/input/mysqlRecordSet.cpp
+++ b/lib/input/mysqlRecordSet.cpp
@@ -105,6 +105,12 @@ namespace MyGrate::Input {
verify<MySQLErr>(!mysql_stmt_fetch(stmt.get()), "Fetch", stmt.get());
currentRow = row;
}
+ return MySQLData::at(col);
+ }
+
+ DbValue
+ MySQLData::at(std::size_t col) const
+ {
if (extras[col]->null) {
return nullptr;
}
diff --git a/lib/input/mysqlRecordSet.h b/lib/input/mysqlRecordSet.h
index 0b4a057..d843dfd 100644
--- a/lib/input/mysqlRecordSet.h
+++ b/lib/input/mysqlRecordSet.h
@@ -21,6 +21,8 @@ namespace MyGrate::Input {
std::size_t columns() const;
+ DbValue at(std::size_t col) const;
+
StmtPtr stmt;
std::vector<MYSQL_BIND> fields;
std::vector<ResultDataPtr> extras;