dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-03 15:35:02 +09:00
parent c327709379
commit 7724f1f6f8

View File

@ -119,6 +119,7 @@ abstract class Model
final public function execute(string $query): bool|PDOStatement final public function execute(string $query): bool|PDOStatement
{ {
try {
if ($this->_debug) { if ($this->_debug) {
echo "\n<BR>Query:" . $query . "\n<BR>"; echo "\n<BR>Query:" . $query . "\n<BR>";
} }
@ -129,6 +130,9 @@ abstract class Model
$this->reset(); $this->reset();
} }
return $stmt; return $stmt;
} catch (\Exception $e) {
die($e->getMessage());
}
} }
//CURD문 //CURD문