comparison OrthancServer/Sources/Database/SQLiteDatabaseWrapper.h @ 5748:4bc650d88463 find-refactoring

WIP: started to implement IntegratedFind in SQLite
author Alain Mazy <am@orthanc.team>
date Fri, 30 Aug 2024 18:03:37 +0200
parents f7adfb22e20e
children ca06dde85358
comparison
equal deleted inserted replaced
5747:796cb17db15c 5748:4bc650d88463
97 virtual uint64_t MeasureLatency() ORTHANC_OVERRIDE 97 virtual uint64_t MeasureLatency() ORTHANC_OVERRIDE
98 { 98 {
99 throw OrthancException(ErrorCode_NotImplemented); 99 throw OrthancException(ErrorCode_NotImplemented);
100 } 100 }
101 101
102 virtual bool HasIntegratedFind() const ORTHANC_OVERRIDE
103 {
104 return true;
105 }
106
102 /** 107 /**
103 * The "StartTransaction()" method is guaranteed to return a class 108 * The "StartTransaction()" method is guaranteed to return a class
104 * derived from "UnitTestsTransaction". The methods of 109 * derived from "UnitTestsTransaction". The methods of
105 * "UnitTestsTransaction" give access to additional information 110 * "UnitTestsTransaction" give access to additional information
106 * about the underlying SQLite database to be used in unit tests. 111 * about the underlying SQLite database to be used in unit tests.