comparison OrthancFramework/Sources/SQLite/Statement.h @ 4304:50b0c69b653a

continued abi
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 06 Nov 2020 16:33:52 +0100
parents d25f4c0fa160
children c847b0dfd255
comparison
equal deleted inserted replaced
4303:44b53a2c0a13 4304:50b0c69b653a
103 103
104 Statement(Connection& database, 104 Statement(Connection& database,
105 const StatementId& id, 105 const StatementId& id,
106 const char* sql); 106 const char* sql);
107 107
108 ~Statement() 108 ~Statement();
109 {
110 Reset();
111 }
112 109
113 bool Run(); 110 bool Run();
114 111
115 bool Step(); 112 bool Step();
116 113