Compare commits

..

2 Commits

Author SHA1 Message Date
9e3e2f96b2
make left joins really work
All checks were successful
soko-web/pipeline/pr-master This commit looks good
2023-05-01 16:30:21 +02:00
b4589fd7b6
fixup! make it possible to use the same table in multiple joins 2023-05-01 16:30:21 +02:00

View File

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