1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 05:18:32 +01:00
php-debugbar/demo/pdo.php
Barry vd. Heuvel 5e47525218
Revert "Fix demo PDOCollector name, and update it with 72fea42" (#595)
* Revert "Fix demo PDOCollector name, and update it with 72fea42 (#593)"

This reverts commit 43632b66d35a0abdc9d87b6858472558f165df10.

* Update pdo.php
2024-02-13 19:38:06 +01:00

25 lines
670 B
PHP

<?php
include 'bootstrap.php';
use DebugBar\DataCollector\PDO\TraceablePDO;
use DebugBar\DataCollector\PDO\PDOCollector;
$pdo = new TraceablePDO(new PDO('sqlite::memory:'));
$debugbar->addCollector(new PDOCollector($pdo));
$debugbar['pdo']->setDurationBackground(true);
$pdo->exec('create table users (name varchar)');
$stmt = $pdo->prepare('insert into users (name) values (?)');
$stmt->execute(array('foo'));
$stmt->execute(array('bar'));
$users = $pdo->query('select * from users')->fetchAll();
$stmt = $pdo->prepare('select * from users where name=?');
$stmt->execute(array('foo'));
$foo = $stmt->fetch();
$pdo->exec('delete from users');
render_demo_page();