25 lines
426 B
PHP
25 lines
426 B
PHP
<?php
|
|
namespace Szurubooru;
|
|
|
|
class PDOEx extends \PDO
|
|
{
|
|
private $queryCount = 0;
|
|
private $statements = [];
|
|
|
|
public function prepare($statement, $driverOptions = [])
|
|
{
|
|
++ $this->queryCount;
|
|
$this->statements[] = $statement;
|
|
return parent::prepare($statement, $driverOptions);
|
|
}
|
|
|
|
public function getQueryCount()
|
|
{
|
|
return $this->queryCount;
|
|
}
|
|
|
|
public function getStatements()
|
|
{
|
|
return $this->statements;
|
|
}
|
|
}
|