Mercurial > hg > orthanc-databases
comparison Framework/Plugins/DatabaseBackendAdapterV3.cpp @ 403:91124cc8a8c7 db-protobuf
database plugins are informed about the identifier tags
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 11 Apr 2023 11:10:19 +0200 |
parents | a8774581adfc |
children | ecd0b719cff5 |
comparison
equal
deleted
inserted
replaced
402:82921a29349a | 403:91124cc8a8c7 |
---|---|
798 { | 798 { |
799 IndexConnectionsPool* pool = reinterpret_cast<IndexConnectionsPool*>(database); | 799 IndexConnectionsPool* pool = reinterpret_cast<IndexConnectionsPool*>(database); |
800 | 800 |
801 try | 801 try |
802 { | 802 { |
803 pool->OpenConnections(); | 803 std::list<IdentifierTag> identifierTags; |
804 pool->OpenConnections(false, identifierTags); | |
804 return OrthancPluginErrorCode_Success; | 805 return OrthancPluginErrorCode_Success; |
805 } | 806 } |
806 ORTHANC_PLUGINS_DATABASE_CATCH(pool->GetContext()); | 807 ORTHANC_PLUGINS_DATABASE_CATCH(pool->GetContext()); |
807 } | 808 } |
808 | 809 |