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,