comparison Core/SQLite/Statement.h @ 137:0e97abc7b950

fix of a bug in older versions of sqlite
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 10 Oct 2012 13:13:14 +0200
parents 6212bf978584
children f333c0398f6e
comparison
equal deleted inserted replaced
136:fe180eae201d 137:0e97abc7b950
93 93
94 Statement(Connection& database, 94 Statement(Connection& database,
95 const StatementId& id, 95 const StatementId& id,
96 const char* sql); 96 const char* sql);
97 97
98 ~Statement()
99 {
100 Reset();
101 }
102
98 bool Run(); 103 bool Run();
99 104
100 bool Step(); 105 bool Step();
101 106
102 // Resets the statement to its initial condition. This includes any current 107 // Resets the statement to its initial condition. This includes any current