1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-09 15:47:23 +02:00

Merge pull request #190 from bckp/patch-1

Updated docs
This commit is contained in:
David Grudl
2015-10-13 11:54:55 +02:00

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>