diff Framework/MySQL/MySQLStatement.h @ 214:ab96698c73a3

removed useless information about read-only in ITransaction and IPrecompiledStatement
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 25 Mar 2021 13:56:26 +0100
parents 3236894320d6
children 16aac0287485
line wrap: on
line diff
--- a/Framework/MySQL/MySQLStatement.h	Wed Mar 24 15:59:23 2021 +0100
+++ b/Framework/MySQL/MySQLStatement.h	Thu Mar 25 13:56:26 2021 +0100
@@ -39,7 +39,6 @@
     void Close();
 
     MySQLDatabase&             db_;
-    bool                       readOnly_;
     MYSQL_STMT                *statement_;
     GenericFormatter           formatter_;
     std::vector<ResultField*>  result_;
@@ -51,11 +50,6 @@
 
     virtual ~MySQLStatement();
 
-    virtual bool IsReadOnly() const ORTHANC_OVERRIDE
-    {
-      return readOnly_;
-    }
-
     MYSQL_STMT* GetObject();
 
     size_t GetResultFieldsCount() const