1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-01 11:50:15 +02:00

examples: files renamed

This commit is contained in:
David Grudl
2010-08-03 13:54:05 +02:00
parent 8f9435b518
commit beee4ee4b7
17 changed files with 32 additions and 0 deletions

40
examples/using-logger.php Normal file
View File

@@ -0,0 +1,40 @@
<!DOCTYPE html><link rel="stylesheet" href="data/style.css">
<h1>Using Logger | dibi</h1>
<?php
require_once 'Nette/Debug.php';
require_once '../dibi/dibi.php';
date_default_timezone_set('Europe/Prague');
dibi::connect(array(
'driver' => 'sqlite',
'database' => 'data/sample.sdb',
'profiler' => TRUE,
));
// enable query logging to this file
dibi::getProfiler()->setFile('data/log.sql');
try {
$res = dibi::query('SELECT * FROM [customers] WHERE [customer_id] = %i', 1);
$res = dibi::query('SELECT * FROM [customers] WHERE [customer_id] < %i', 5);
$res = dibi::query('SELECT FROM [customers] WHERE [customer_id] < %i', 38);
} catch (DibiException $e) {
echo '<p>', get_class($e), ': ', $e->getMessage(), '</p>';
}
// outputs a log file
echo "<h2>File data/log.sql:</h2>";
echo '<pre>', file_get_contents('data/log.sql'), '</pre>';