Compare commits
3 Commits
9e3e2f96b2
...
373fccaa91
Author | SHA1 | Date | |
---|---|---|---|
373fccaa91 | |||
b47ef720d5 | |||
5599519f0f |
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user