comparison SQLite/Plugins/IndexPlugin.cpp @ 200:30b210616f4f

cont
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 18 Mar 2021 15:21:17 +0100
parents 3236894320d6
children 42990b2dd51b
comparison
equal deleted inserted replaced
199:8cae98f73d53 200:30b210616f4f
63 { 63 {
64 /* Create the database back-end */ 64 /* Create the database back-end */
65 backend_.reset(new OrthancDatabases::SQLiteIndex("index.db")); // TODO parameter 65 backend_.reset(new OrthancDatabases::SQLiteIndex("index.db")); // TODO parameter
66 66
67 /* Register the SQLite index into Orthanc */ 67 /* Register the SQLite index into Orthanc */
68 OrthancPlugins::DatabaseBackendAdapter::Register(context, *backend_); 68 OrthancPlugins::DatabaseBackendAdapterV2::Register(context, *backend_);
69 } 69 }
70 catch (Orthanc::OrthancException& e) 70 catch (Orthanc::OrthancException& e)
71 { 71 {
72 LOG(ERROR) << e.What(); 72 LOG(ERROR) << e.What();
73 return -1; 73 return -1;