mirror of
https://github.com/dg/dibi.git
synced 2025-01-17 22:28:50 +01:00
34 lines
704 B
PHP
34 lines
704 B
PHP
<!DOCTYPE html><link rel="stylesheet" href="data/style.css">
|
|
|
|
<h1>Tracy & SQL Exceptions | dibi</h1>
|
|
|
|
<p>Dibi can display and log exceptions via <a href="https://tracy.nette.org">Tracy</a>.</p>
|
|
|
|
<?php
|
|
|
|
if (@!include __DIR__ . '/../vendor/autoload.php') {
|
|
die('Install dependencies using `composer install --dev`');
|
|
}
|
|
|
|
|
|
// enable Tracy
|
|
Tracy\Debugger::enable();
|
|
|
|
|
|
$connection = dibi::connect(array(
|
|
'driver' => 'sqlite3',
|
|
'database' => 'data/sample.s3db',
|
|
'profiler' => array(
|
|
'run' => TRUE,
|
|
),
|
|
));
|
|
|
|
|
|
// add panel to debug bar
|
|
$panel = new Dibi\Bridges\Tracy\Panel;
|
|
$panel->register($connection);
|
|
|
|
|
|
// throws error because SQL is bad
|
|
dibi::query('SELECT FROM customers WHERE customer_id < ?', 38);
|