Mercurial > hg > orthanc-databases
annotate Framework/Common/ITransaction.h @ 489:e8b4bb6a33e7
introduction of ORTHANC_SDK_COMPATIBLE_VERSIONS in CMake
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 22 Mar 2024 14:27:36 +0100 |
parents | ecd0b719cff5 |
children | 54d518dcd74a |
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 | |
459
ecd0b719cff5
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
389
diff
changeset
|
5 * Copyright (C) 2017-2024 Osimis S.A., Belgium |
ecd0b719cff5
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
389
diff
changeset
|
6 * Copyright (C) 2021-2024 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 #include "Dictionary.h" | |
26 #include "IPrecompiledStatement.h" | |
27 #include "IResult.h" | |
28 | |
29 namespace OrthancDatabases | |
30 { | |
31 class ITransaction : public boost::noncopyable | |
32 { | |
33 public: | |
34 virtual ~ITransaction() | |
35 { | |
36 } | |
37 | |
23
b2ff1cd2907a
handling of implicit transactions in DatabaseManager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
38 virtual bool IsImplicit() const = 0; |
0 | 39 |
40 virtual void Rollback() = 0; | |
41 | |
42 virtual void Commit() = 0; | |
43 | |
44 virtual IResult* Execute(IPrecompiledStatement& statement, | |
45 const Dictionary& parameters) = 0; | |
46 | |
47 virtual void ExecuteWithoutResult(IPrecompiledStatement& statement, | |
48 const Dictionary& parameters) = 0; | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
49 |
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
50 virtual bool DoesTableExist(const std::string& name) = 0; |
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
51 |
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
52 virtual bool DoesTriggerExist(const std::string& name) = 0; // Only for MySQL |
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
53 |
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
54 virtual void ExecuteMultiLines(const std::string& query) = 0; |
0 | 55 }; |
56 } |