comparison SQLite/Plugins/SQLiteIndex.h @ 142:bbd57f5672fa

fix compilation of SQLite plugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Feb 2020 09:34:56 +0100
parents 4cd7e45b671e
children 3236894320d6
comparison
equal deleted inserted replaced
141:0b3e9ee53c46 142:bbd57f5672fa
46 46
47 virtual IDatabase* Open() 47 virtual IDatabase* Open()
48 { 48 {
49 return that_.OpenInternal(); 49 return that_.OpenInternal();
50 } 50 }
51
52 virtual void GetConnectionRetriesParameters(unsigned int& maxConnectionRetries,
53 unsigned int& connectionRetryInterval)
54 {
55 // Dummy parameters
56 maxConnectionRetries = 0;
57 connectionRetryInterval = 1;
58 }
51 }; 59 };
52 60
53 OrthancPluginContext* context_; 61 OrthancPluginContext* context_;
54 std::string path_; 62 std::string path_;
55 bool fast_; 63 bool fast_;