Mercurial > hg > orthanc
view OrthancFramework/Sources/SQLite/README.txt @ 5040:1c08cd68250a
removed the 'name' of MainDicomTags to simplify code -> DicomMap::ParseMainDicomTags has been deprecated and one should use DicomMap::FromDicomAsJson on 'full' formatted tags
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 27 Jun 2022 12:39:51 +0200 |
parents | d25f4c0fa160 |
children |
line wrap: on
line source
Introduction ============ The code in this folder is a standalone object-oriented wrapper around SQLite3. It is derived from the code of Chromium: http://src.chromium.org/viewvc/chrome/trunk/src/sql/ http://maxradi.us/documents/sqlite/ Main differences with Chromium ============================== * The reference counting mechanism has been reimplemented to make it simpler. * The OrthancException class is used for the exception mechanisms. * A statement is always valid (is_valid() always return true). * The classes and the methods have been renamed to meet Orthanc's coding conventions. Reuse in another software ========================= To use the Orthanc SQLite wrapper in another project than Orthanc, you just have to define the "ORTHANC_SQLITE_STANDALONE" macro. All the C++ exceptions generated by the wrapper will be objects of the class "::Orthanc::SQLite::OrthancSQLiteException", that derives from the standard exception class "::std::runtime_error". Licensing ========= The code in this folder is licensed under the 3-clause BSD license, in order to respect the original license of the code. It is pretty straightforward to extract the code from this folder and to include it in another project.