comparison Framework/PostgreSQL/PostgreSQLResult.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 7cea966b6829
children 714c5d2bee76
comparison
equal deleted inserted replaced
44:95f0f57f8920 46:6a574d810b98
44 void CheckColumn(unsigned int column, /*Oid*/ unsigned int expectedType) const; 44 void CheckColumn(unsigned int column, /*Oid*/ unsigned int expectedType) const;
45 45
46 public: 46 public:
47 explicit PostgreSQLResult(PostgreSQLStatement& statement); 47 explicit PostgreSQLResult(PostgreSQLStatement& statement);
48 48
49 ~PostgreSQLResult() 49 ~PostgreSQLResult();
50 {
51 Clear();
52 }
53 50
54 void Next(); 51 void Next();
55 52
56 bool IsDone() const 53 bool IsDone() const
57 { 54 {