Mercurial > hg > orthanc-databases
annotate Framework/SQLite/SQLiteStatement.h @ 406:de6de66d70b2 db-protobuf
integration mainline->db-protobuf
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 15 Apr 2023 13:54:42 +0200 |
parents | 3d6886f3e5b3 |
children | ecd0b719cff5 |
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 | |
389
3d6886f3e5b3
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
3d6886f3e5b3
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
6 * Copyright (C) 2021-2023 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_SQLITE != 1 | |
26 # error SQLite support must be enabled to use this file | |
27 #endif | |
28 | |
29 #include "SQLiteDatabase.h" | |
30 #include "SQLiteTransaction.h" | |
31 #include "../Common/GenericFormatter.h" | |
32 | |
157
275e14f57f1e
replacing deprecated std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
33 #include <Compatibility.h> // For std::unique_ptr<> |
152 | 34 #include <SQLite/Statement.h> |
0 | 35 |
36 #include <memory> | |
37 | |
38 namespace OrthancDatabases | |
39 { | |
40 class SQLiteStatement : public IPrecompiledStatement | |
41 { | |
42 private: | |
157
275e14f57f1e
replacing deprecated std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
43 std::unique_ptr<Orthanc::SQLite::Statement> statement_; |
0 | 44 GenericFormatter formatter_; |
45 | |
46 void BindParameters(const Dictionary& parameters); | |
47 | |
48 public: | |
49 SQLiteStatement(SQLiteDatabase& database, | |
50 const Query& query); | |
51 | |
52 Orthanc::SQLite::Statement& GetObject(); | |
53 | |
23
b2ff1cd2907a
handling of implicit transactions in DatabaseManager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
54 IResult* Execute(ITransaction& transaction, |
0 | 55 const Dictionary& parameters); |
56 | |
23
b2ff1cd2907a
handling of implicit transactions in DatabaseManager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
57 void ExecuteWithoutResult(ITransaction& transaction, |
0 | 58 const Dictionary& parameters); |
59 }; | |
60 } |