mirror of
https://github.com/dg/dibi.git
synced 2025-02-22 09:53:11 +01:00
20 lines
322 B
PHP
20 lines
322 B
PHP
<h1>Nette::Debug && dibi example</h1>
|
|
<?php
|
|
|
|
require_once 'Nette/Debug.php';
|
|
require_once '../dibi/dibi.php';
|
|
|
|
Debug::enable();
|
|
Debug::enableProfiler();
|
|
|
|
|
|
dibi::connect(array(
|
|
'driver' => 'sqlite',
|
|
'database' => 'sample.sdb',
|
|
));
|
|
|
|
|
|
|
|
// throws error
|
|
dibi::query('SELECT FROM [customers] WHERE [customer_id] < %i', 38);
|