| Index: sql/statement.h
|
| diff --git a/sql/statement.h b/sql/statement.h
|
| index 92d1ef2fb472c44f15434ac60772b1561d6ab009..269684ffe45858e92a0e955522cc4e0d60552659 100644
|
| --- a/sql/statement.h
|
| +++ b/sql/statement.h
|
| @@ -87,9 +87,9 @@ class SQL_EXPORT Statement {
|
| // return s.Succeeded();
|
| bool Step();
|
|
|
| - // Resets the statement to its initial condition. This includes clearing all
|
| - // the bound variables and any current result row.
|
| - void Reset();
|
| + // Resets the statement to its initial condition. This includes any current
|
| + // result row, and also the bound variables if the |clear_bound_vars| is true.
|
| + void Reset(bool clear_bound_vars);
|
|
|
| // 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
|
|
|