summaryrefslogtreecommitdiff
path: root/lib/input
diff options
context:
space:
mode:
Diffstat (limited to 'lib/input')
-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;