comparison OrthancServer/Sources/Database/SQLiteDatabaseWrapper.h @ 5758:ca06dde85358 large-queries

merged find-refactoring -> large-queries
author Alain Mazy <am@orthanc.team>
date Thu, 05 Sep 2024 18:52:27 +0200
parents 3765085693e5 4bc650d88463
children 093a8693ba16
comparison
equal deleted inserted replaced
5757:5463c3ae3235 5758:ca06dde85358
98 virtual uint64_t MeasureLatency() ORTHANC_OVERRIDE 98 virtual uint64_t MeasureLatency() ORTHANC_OVERRIDE
99 { 99 {
100 throw OrthancException(ErrorCode_NotImplemented); 100 throw OrthancException(ErrorCode_NotImplemented);
101 } 101 }
102 102
103 virtual bool HasIntegratedFind() const ORTHANC_OVERRIDE
104 {
105 return true;
106 }
107
103 /** 108 /**
104 * The "StartTransaction()" method is guaranteed to return a class 109 * The "StartTransaction()" method is guaranteed to return a class
105 * derived from "UnitTestsTransaction". The methods of 110 * derived from "UnitTestsTransaction". The methods of
106 * "UnitTestsTransaction" give access to additional information 111 * "UnitTestsTransaction" give access to additional information
107 * about the underlying SQLite database to be used in unit tests. 112 * about the underlying SQLite database to be used in unit tests.