comparison Framework/MySQL/MySQLTransaction.h @ 252:33fa478c119a

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Apr 2021 13:33:48 +0200
parents 35598014f140
children 16aac0287485
comparison
equal deleted inserted replaced
251:ed12248ad791 252:33fa478c119a
55 const Dictionary& parameters) ORTHANC_OVERRIDE; 55 const Dictionary& parameters) ORTHANC_OVERRIDE;
56 56
57 virtual void ExecuteWithoutResult(IPrecompiledStatement& transaction, 57 virtual void ExecuteWithoutResult(IPrecompiledStatement& transaction,
58 const Dictionary& parameters) ORTHANC_OVERRIDE; 58 const Dictionary& parameters) ORTHANC_OVERRIDE;
59 59
60 virtual bool DoesTableExist(const std::string& name) 60 virtual bool DoesTableExist(const std::string& name) ORTHANC_OVERRIDE
61 { 61 {
62 return db_.DoesTableExist(*this, name); 62 return db_.DoesTableExist(*this, name);
63 } 63 }
64 64
65 virtual bool DoesTriggerExist(const std::string& name) 65 virtual bool DoesTriggerExist(const std::string& name) ORTHANC_OVERRIDE
66 { 66 {
67 return db_.DoesTriggerExist(*this, name); 67 return db_.DoesTriggerExist(*this, name);
68 } 68 }
69 69
70 virtual void ExecuteMultiLines(const std::string& query) 70 virtual void ExecuteMultiLines(const std::string& query) ORTHANC_OVERRIDE
71 { 71 {
72 db_.ExecuteMultiLines(query, false /* don't deal with arobases */); 72 db_.ExecuteMultiLines(query, false /* don't deal with arobases */);
73 } 73 }
74 }; 74 };
75 } 75 }