comparison Framework/MySQL/MySQLStatement.h @ 46:6a574d810b98

Compatibility with MySQL 8.0
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 18 Jul 2018 12:27:40 +0200
parents b2ff1cd2907a
children 714c5d2bee76
comparison
equal deleted inserted replaced
44:95f0f57f8920 46:6a574d810b98
47 47
48 public: 48 public:
49 MySQLStatement(MySQLDatabase& db, 49 MySQLStatement(MySQLDatabase& db,
50 const Query& query); 50 const Query& query);
51 51
52 virtual ~MySQLStatement() 52 virtual ~MySQLStatement();
53 {
54 Close();
55 }
56 53
57 virtual bool IsReadOnly() const 54 virtual bool IsReadOnly() const
58 { 55 {
59 return readOnly_; 56 return readOnly_;
60 } 57 }