comparison Sphinx/source/faq/orthanc-storage.rst @ 738:b222924248f9

note
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 19 Jul 2021 18:41:47 +0200
parents e6386c012438
children 97e6a0431c5e
comparison
equal deleted inserted replaced
737:344bf4bfc36d 738:b222924248f9
81 * One SQLite database should be accessed by at most one process at any 81 * One SQLite database should be accessed by at most one process at any
82 time to avoid any problem (e.g. with NFS filesystems), for reasons 82 time to avoid any problem (e.g. with NFS filesystems), for reasons
83 that are `explained in the SQLite FAQ 83 that are `explained in the SQLite FAQ
84 <https://www.sqlite.org/faq.html#q5>`__. Orthanc will stop if it 84 <https://www.sqlite.org/faq.html#q5>`__. Orthanc will stop if it
85 receives the ``SQLITE_BUSY`` status. 85 receives the ``SQLITE_BUSY`` status.
86 86 * The internal structure of the databases might evolve across
87 successive versions of Orthanc or of the database plugins.
88
87 As a consequence, it is **HIGHLY recommended NOT to directly access** 89 As a consequence, it is **HIGHLY recommended NOT to directly access**
88 the ``OrthancStorage`` folder and the SQLite/MySQL/PostgreSQL 90 the ``OrthancStorage`` folder and the SQLite/MySQL/PostgreSQL
89 database. Use the :ref:`REST API <rest>` instead, which contains 91 database. Use the :ref:`REST API <rest>` instead, which contains
90 primitives to access the attachments (cf. the ``.../attachments/...`` 92 primitives to access the attachments (cf. the ``.../attachments/...``
91 URIs). 93 URIs).