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;
}
}