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

- added fluent SQL builders support in DibiConnection and DibiTable

This commit is contained in:
David Grudl
2008-09-13 16:38:59 +00:00
parent 96c69f5bed
commit 8c4211d5be
10 changed files with 124 additions and 17 deletions

View File

@@ -87,3 +87,7 @@ var_dump($id); // generated id
$key = '3 OR 1=1';
$products->delete($key);
// --> DELETE FROM [products] WHERE [product_id] IN ( 3 )
// select all using fluent interface
var_dump($products->select('*')->orderBy('title')->fetchAll());