Mercurial > hg > orthanc-databases
annotate Framework/SQLite/SQLiteDatabase.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 "../Common/IDatabase.h" | |
30 | |
152 | 31 #include <SQLite/Connection.h> |
0 | 32 |
33 namespace OrthancDatabases | |
34 { | |
35 class SQLiteDatabase : public IDatabase | |
36 { | |
37 private: | |
38 Orthanc::SQLite::Connection connection_; | |
39 | |
40 public: | |
41 void OpenInMemory() | |
42 { | |
43 connection_.OpenInMemory(); | |
44 } | |
45 | |
46 void Open(const std::string& path) | |
47 { | |
48 connection_.Open(path); | |
49 } | |
50 | |
51 Orthanc::SQLite::Connection& GetObject() | |
52 { | |
53 return connection_; | |
54 } | |
55 | |
56 void Execute(const std::string& sql); | |
57 | |
58 int64_t GetLastInsertRowId() const | |
59 { | |
60 return connection_.GetLastInsertRowId(); | |
61 } | |
62 | |
186 | 63 virtual Dialect GetDialect() const ORTHANC_OVERRIDE |
0 | 64 { |
65 return Dialect_SQLite; | |
66 } | |
67 | |
186 | 68 virtual IPrecompiledStatement* Compile(const Query& query) ORTHANC_OVERRIDE; |
0 | 69 |
215
b40b30075c51
added TransactionType_Implicit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
70 virtual ITransaction* CreateTransaction(TransactionType type) ORTHANC_OVERRIDE; |
0 | 71 }; |
72 } |