From 45379f9325500d79750fed15c091461d99ee065f Mon Sep 17 00:00:00 2001 From: "S. Alexander Zaman" Date: Tue, 19 Aug 2014 16:15:57 -0500 Subject: [PATCH] clearBinding added clearBinding function --- include/SQLiteCpp/Statement.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/SQLiteCpp/Statement.h b/include/SQLiteCpp/Statement.h index 0734481..dfd7b09 100644 --- a/include/SQLiteCpp/Statement.h +++ b/include/SQLiteCpp/Statement.h @@ -75,6 +75,11 @@ public: * @brief Reset the statement to make it ready for a new execution. */ void reset(); + + /** + * @brief Clears away all the bindings of a prepared statement. + */ + void clearBindings(void); // throw(SQLite::Exception) //////////////////////////////////////////////////////////////////////////// // Bind a value to a parameter of the SQL statement,