comparison Framework/PostgreSQL/PostgreSQLStatement.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
70 bool readOnly); 70 bool readOnly);
71 71
72 PostgreSQLStatement(PostgreSQLDatabase& database, 72 PostgreSQLStatement(PostgreSQLDatabase& database,
73 const Query& query); 73 const Query& query);
74 74
75 ~PostgreSQLStatement() 75 ~PostgreSQLStatement();
76 {
77 Unprepare();
78 }
79 76
80 virtual bool IsReadOnly() const 77 virtual bool IsReadOnly() const
81 { 78 {
82 return readOnly_; 79 return readOnly_;
83 } 80 }