Mercurial > hg > orthanc-databases
annotate Framework/MySQL/MySQLResult.h @ 369:557bc5ba3a5c
fix warnings
author | Alain Mazy <am@osimis.io> |
---|---|
date | Wed, 01 Feb 2023 16:25:37 +0100 |
parents | 16aac0287485 |
children | 3d6886f3e5b3 |
rev | line source |
---|---|
0 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
359
16aac0287485
copyright upgraded to 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
5 * Copyright (C) 2017-2022 Osimis S.A., Belgium |
16aac0287485
copyright upgraded to 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
6 * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU Affero General Public License | |
10 * as published by the Free Software Foundation, either version 3 of | |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Affero General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Affero General Public License | |
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 **/ | |
21 | |
22 | |
23 #pragma once | |
24 | |
25 #if ORTHANC_ENABLE_MYSQL != 1 | |
26 # error MySQL support must be enabled to use this file | |
27 #endif | |
28 | |
29 #include "../Common/ResultBase.h" | |
30 #include "MySQLStatement.h" | |
31 | |
32 namespace OrthancDatabases | |
33 { | |
34 class MySQLResult : public ResultBase | |
35 { | |
36 private: | |
37 MySQLDatabase& database_; | |
38 MySQLStatement& statement_; | |
39 bool done_; | |
40 | |
41 void Step(); | |
42 | |
43 protected: | |
186 | 44 virtual IValue* FetchField(size_t index) ORTHANC_OVERRIDE; |
0 | 45 |
46 public: | |
47 MySQLResult(MySQLDatabase& db, | |
48 MySQLStatement& statement); | |
49 | |
186 | 50 virtual ~MySQLResult() ORTHANC_OVERRIDE; |
0 | 51 |
186 | 52 virtual bool IsDone() const ORTHANC_OVERRIDE |
0 | 53 { |
54 return done_; | |
55 } | |
56 | |
186 | 57 virtual void Next() ORTHANC_OVERRIDE; |
0 | 58 }; |
59 } |