diff Framework/Common/DatabaseManager.h @ 452:6780dd8b0a66 pg-transactions

fix latency measure for ODBC
author Alain Mazy <am@osimis.io>
date Thu, 18 Jan 2024 10:04:43 +0100
parents 326f8304daa1
children f0976163dbe1
line wrap: on
line diff
--- a/Framework/Common/DatabaseManager.h	Wed Jan 17 19:31:23 2024 +0100
+++ b/Framework/Common/DatabaseManager.h	Thu Jan 18 10:04:43 2024 +0100
@@ -253,6 +253,17 @@
       }
 
       void Execute(const Dictionary& parameters);
+
+      void ExecuteWithoutResult()
+      {
+        Dictionary parameters;
+        ExecuteWithoutResult(parameters);
+      }
+
+      void ExecuteWithoutResult(const Dictionary& parameters);
+
+    private:
+      void ExecuteInternal(const Dictionary& parameters, bool withResults);
     };
   };
 }