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

Updated docs

Docs updated to new syntax, so people use new and not old deprecated one
This commit is contained in:
Radovan Kepák
2015-10-13 10:36:24 +02:00
parent 20f2093aa5
commit 617e5ca6da

View File

@@ -18,8 +18,8 @@ namespace Dibi;
* $value = $result->fetchSingle();
* $table = $result->fetchAll();
* $pairs = $result->fetchPairs();
* $assoc = $result->fetchAssoc('id');
* $assoc = $result->fetchAssoc('active,#,id');
* $assoc = $result->fetchAssoc('col1');
* $assoc = $result->fetchAssoc('col1[]col2->col3');
*
* unset($result);
* </code>