Разширяване на PDO
ще бъде направено като всеки друг клас. Това ще отговаря ли на вашите нужди? Единствената друга промяна в кода би била необходимостта да се инстанцира този клас вместо PDO
клас, когато правите първоначалната си връзка.
class PDOEx extends PDO
{
private $queryCount = 0;
public function query($query)
{
// Increment the counter.
++$this->queryCount;
// Run the query.
return parent::query($query);
}
public function exec($statement)
{
// Increment the counter.
++$this->queryCount;
// Execute the statement.
return parent::exec($statement);
}
public function GetCount()
{
return $this->queryCount;
}
}