This commit is contained in:
parent
58ae36d23a
commit
d07821dfe6
@ -50,6 +50,8 @@ class Connection implements IConnection
|
|||||||
{
|
{
|
||||||
$result = $this->connection->query($query);
|
$result = $this->connection->query($query);
|
||||||
|
|
||||||
|
var_dump($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);
|
||||||
|
|
||||||
|
var_dump($query);
|
||||||
|
|
||||||
return new Statement($stmt);
|
return new Statement($stmt);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user