aboutsummaryrefslogtreecommitdiff
path: root/frontend/DB.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/DB.h')
-rw-r--r--frontend/DB.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/DB.h b/frontend/DB.h
index 77b3f7a..f6907bc 100644
--- a/frontend/DB.h
+++ b/frontend/DB.h
@@ -13,6 +13,8 @@ public:
public:
template <typename T>
+ T col(int index, const T & default_value);
+ template <typename T>
T col(int index);
private:
@@ -52,7 +54,7 @@ public:
DBStatement(DB &, const std::string & query);
public:
- DBStatement & unbind();
+ DBStatement & reset();
DBStatement & bind(const std::string & text);
DBStatement & bind(const int & number);
public: