diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/odhtdb/sql/Sql.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/odhtdb/sql/Sql.hpp b/include/odhtdb/sql/Sql.hpp index cb740a4..21517e4 100644 --- a/include/odhtdb/sql/Sql.hpp +++ b/include/odhtdb/sql/Sql.hpp @@ -1,6 +1,7 @@ #pragma once #include "../DataView.hpp" +#include <string> class sqlite3; class sqlite3_stmt; @@ -24,6 +25,8 @@ namespace odhtdb SqlArg(u64 data) : uinteger64(data), type(Type::UINT64) {} int bind(sqlite3_stmt *stmt, int paramIndex) const; + + std::string toString() const; private: union { |