Chromium Code Reviews| Index: sql/statement.h |
| diff --git a/sql/statement.h b/sql/statement.h |
| index 92d1ef2fb472c44f15434ac60772b1561d6ab009..501b8b3735f1f5f83f62e838cc0c88647242f097 100644 |
| --- a/sql/statement.h |
| +++ b/sql/statement.h |
| @@ -91,6 +91,10 @@ class SQL_EXPORT Statement { |
| // the bound variables and any current result row. |
| void Reset(); |
| + // Resets the statement to its initial condition without clearing the bound |
| + // variables. |
| + void ResetWithoutClearingBoundVariables(); |
|
brettw
2012/04/24 23:12:30
This name seems awkward and out of place. It looks
michaelbai
2012/04/25 17:10:52
Done.
Scott Hess - ex-Googler
2012/07/03 00:34:34
In my imagination, ResetWithoutClearingBoundVariab
|
| + |
| // Returns true if the last executed thing in this statement succeeded. If |
| // there was no last executed thing or the statement is invalid, this will |
| // return false. |