summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/database/results.rst
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2012-06-26 08:23:46 +0200
committerDerek Jones <derek.jones@ellislab.com>2012-06-26 08:23:46 +0200
commitce79be0b5ffc9d5754c93771a8c289a252ec437b (patch)
tree87ec7fed926d8af076a75a5f08df2a1e27ca1d4b /user_guide_src/source/database/results.rst
parent40f1404344d09520e91d6d3cb9ccd23b786ca35e (diff)
Fixing various Sphinx bugs and syntax errors in docs
Diffstat (limited to 'user_guide_src/source/database/results.rst')
-rw-r--r--user_guide_src/source/database/results.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/database/results.rst b/user_guide_src/source/database/results.rst
index ac4fc3733..d032f734e 100644
--- a/user_guide_src/source/database/results.rst
+++ b/user_guide_src/source/database/results.rst
@@ -139,13 +139,13 @@ parameter:
.. note:: all the functions above will load the whole result into memory (prefetching) use unbuffered_row() for processing large result sets.
unbuffered_row($type)
-=====
+=====================
This function returns a single result row without prefetching the whole result in memory as row() does.
If your query has more than one row, it returns the current row and moves the internal data pointer ahead.
The result is returned as $type could be 'object' (default) or 'array' that will return an associative array.
-
+::
$query = $this->db->query("YOUR QUERY");