summaryrefslogtreecommitdiff
path: root/lib/input/mysqlStmt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/input/mysqlStmt.cpp')
-rw-r--r--lib/input/mysqlStmt.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/input/mysqlStmt.cpp b/lib/input/mysqlStmt.cpp
index d3ba9ef..e0f4cbc 100644
--- a/lib/input/mysqlStmt.cpp
+++ b/lib/input/mysqlStmt.cpp
@@ -33,4 +33,10 @@ namespace MyGrate::Input {
{
return std::make_unique<MySQLRecordSet>(std::move(stmt));
}
+
+ CursorPtr
+ MySQLPrepStmt::cursor()
+ {
+ return std::make_unique<MySQLCursor>(std::move(stmt));
+ }
}