comparison Framework/MySQL/MySQLDatabase.h @ 144:740d9829f52e

handling of errors if MySQL user cannot CREATE TRIGGER
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 12 Mar 2020 12:10:52 +0100
parents 4cd7e45b671e
children 6fe74f9a516e
comparison
equal deleted inserted replaced
142:bbd57f5672fa 144:740d9829f52e
86 const std::string& name); 86 const std::string& name);
87 87
88 bool DoesDatabaseExist(MySQLTransaction& transaction, 88 bool DoesDatabaseExist(MySQLTransaction& transaction,
89 const std::string& name); 89 const std::string& name);
90 90
91 bool DoesTriggerExist(MySQLTransaction& transaction,
92 const std::string& name);
93
91 virtual Dialect GetDialect() const 94 virtual Dialect GetDialect() const
92 { 95 {
93 return Dialect_MySQL; 96 return Dialect_MySQL;
94 } 97 }
95 98