[debug]
All checks were successful
soko-web/pipeline/pr-master This commit looks good

This commit is contained in:
Bence Pőcze 2023-05-01 15:26:21 +02:00
parent 58ae36d23a
commit 5599519f0f
Signed by: bence
GPG Key ID: DC5BD6E95A333E6D

View File

@ -50,6 +50,8 @@ class Connection implements IConnection
{ {
$result = $this->connection->query($query); $result = $this->connection->query($query);
print($query);
if ($result !== true) { if ($result !== true) {
return new ResultSet($result); return new ResultSet($result);
} }
@ -79,6 +81,8 @@ class Connection implements IConnection
{ {
$stmt = $this->connection->prepare($query); $stmt = $this->connection->prepare($query);
print($query);
return new Statement($stmt); return new Statement($stmt);
} }