Mercurial > hg > orthanc-databases
annotate README @ 384:e236be67e5f9 db-protobuf
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 03 Apr 2023 10:46:01 +0200 |
parents | 8f109cfbfc5d |
children | cd9521e04249 7d2ba3ece4ee |
rev | line source |
---|---|
0 | 1 Database plugins for Orthanc |
2 ============================ | |
3 | |
4 | |
21 | 5 General information |
0 | 6 ------------------- |
7 | |
8 This repository contains the source code of various database plugins | |
9 for Orthanc, the lightweight, RESTful DICOM server. These plugins | |
10 enable Orthanc to store its index and its storage area within | |
11 well-known relational databases systems (RDBMS). | |
12 | |
13 | |
14 Content | |
15 ------- | |
16 | |
17 * ./Framework/ : code shared by all the plugins | |
21 | 18 * ./MySQL/ : index and storage plugins for MySQL and MariaDB |
0 | 19 * ./PostgreSQL/ : index and storage plugins for PostgreSQL |
337 | 20 * ./Odbc/ : index and storage plugins for Odbc |
0 | 21 * ./SQLite/ : index plugin for SQLite (for experimentation) |
22 | |
23 If you downloaded this project as a versioned release package | |
24 (.tar.gz) focused on one given RDBMS, you will only find the folders | |
25 that are related to this specific RDBMS. The full source code is | |
26 available at: | |
336
c0c12b3974b2
fix URLs to the old repositories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
21
diff
changeset
|
27 https://hg.orthanc-server.com/orthanc-databases/ |
0 | 28 |
29 | |
21 | 30 Compilation and usage |
31 --------------------- | |
32 | |
33 The compilation and usage of the plugins is available in the Orthanc | |
34 Book: | |
35 | |
36 * MySQL/MariaDB : http://book.orthanc-server.com/plugins/mysql.html | |
37 * PostgreSQL : http://book.orthanc-server.com/plugins/postgresql.html | |
337 | 38 * ODBC : http://book.orthanc-server.com/plugins/odbc.html |
21 | 39 |
40 | |
0 | 41 Older releases of PostgreSQL |
42 ---------------------------- | |
43 | |
44 This repository supersedes the older "orthanc-postgresql" repository | |
45 that was only focused on PostgreSQL. | |
46 | |
21 | 47 Releases <= 2.1 of the PostgreSQL plugins can still be found in the |
48 following legacy repository: | |
336
c0c12b3974b2
fix URLs to the old repositories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
21
diff
changeset
|
49 https://hg.orthanc-server.com/orthanc-postgresql/ |
0 | 50 |
51 | |
52 Licensing | |
53 --------- | |
54 | |
55 The database plugins for Orthanc are licensed under the AGPL license. | |
56 | |
57 We also kindly ask scientific works and clinical studies that make | |
58 use of Orthanc to cite Orthanc in their associated publications. | |
59 Similarly, we ask open-source and closed-source products that make | |
60 use of Orthanc to warn us about this use. You can cite our work | |
61 using the following BibTeX entry: | |
62 | |
63 @Article{Jodogne2018, | |
64 author="Jodogne, S{\'e}bastien", | |
65 title="The {O}rthanc Ecosystem for Medical Imaging", | |
66 journal="Journal of Digital Imaging", | |
67 year="2018", | |
68 month="Jun", | |
69 day="01", | |
70 volume="31", | |
71 number="3", | |
72 pages="341--352", | |
73 issn="1618-727X", | |
74 doi="10.1007/s10278-018-0082-y", | |
75 url="https://doi.org/10.1007/s10278-018-0082-y" | |
76 } |