summaryrefslogtreecommitdiff
path: root/lib/input/mysqlRecordSet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/input/mysqlRecordSet.cpp')
-rw-r--r--lib/input/mysqlRecordSet.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/input/mysqlRecordSet.cpp b/lib/input/mysqlRecordSet.cpp
index 5fbbfe9..f5d2385 100644
--- a/lib/input/mysqlRecordSet.cpp
+++ b/lib/input/mysqlRecordSet.cpp
@@ -128,4 +128,16 @@ namespace MyGrate::Input {
}
throw MySQLErr("Fetch", stmt.get());
}
+
+ std::size_t
+ MySQLCursor::columns() const
+ {
+ return MySQLData::columns();
+ }
+
+ DbValue
+ MySQLCursor::at(std::size_t col) const
+ {
+ return MySQLData::at(col);
+ }
}