diff --git a/extdbms/lib/Core/Model.php b/extdbms/lib/Core/Model.php index f0b76eb..c083510 100644 --- a/extdbms/lib/Core/Model.php +++ b/extdbms/lib/Core/Model.php @@ -105,9 +105,9 @@ abstract class Model final public function execute(string $query): bool|PDOStatement { - if ($this->_debug) { - echo "\nQuery:" . $query . "\n"; - } + // if ($this->_debug) { + // echo "\nQuery:" . $query . "\n"; + // } $this->_lastQuery = $query; $stmt = $this->getConnect()->prepare($query); $stmt->execute();