File "PDOStatement.php"
Full path: /home/argothem/www/organecyberpresse/ecrire/src/Sql/Sqlite/PDOStatement.php
File size: 319 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spip\Sql\Sqlite;
/**
* Pouvoir retrouver le PDO utilisé pour générer un résultat de requête.
*/
final class PDOStatement extends \PDOStatement {
private \PDO $PDO;
private function __construct(\PDO &$PDO) {
$this->PDO = $PDO;
}
public function getPDO(): \PDO {
return $this->PDO;
}
}