clearBinding

added clearBinding function
This commit is contained in:
S. Alexander Zaman 2014-08-19 16:15:57 -05:00
parent ba578196ad
commit 45379f9325

View File

@ -76,6 +76,11 @@ public:
*/ */
void reset(); 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, // Bind a value to a parameter of the SQL statement,
// in the form "?" (unnamed), "?NNN", ":VVV", "@VVV" or "$VVV". // in the form "?" (unnamed), "?NNN", ":VVV", "@VVV" or "$VVV".