File tree Expand file tree Collapse file tree
user_guide_src/source/database Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,18 +81,18 @@ digit in the first parameter:
8181In addition, you can walk forward/backwards/first/last through your
8282results using these variations:
8383
84- | ** $row = $query->getFirstRow()**
85- | ** $row = $query->getLastRow()**
86- | ** $row = $query->getNextRow()**
87- | ** $row = $query->getPreviousRow()**
84+ | `` $row = $query->getFirstRow()``
85+ | `` $row = $query->getLastRow()``
86+ | `` $row = $query->getNextRow()``
87+ | `` $row = $query->getPreviousRow()``
8888
8989By default they return an object unless you put the word "array" in the
9090parameter:
9191
92- | ** $row = $query->getFirstRow('array')**
93- | ** $row = $query->getLastRow('array')**
94- | ** $row = $query->getNextRow('array')**
95- | ** $row = $query->getPreviousRow('array')**
92+ | `` $row = $query->getFirstRow('array')``
93+ | `` $row = $query->getLastRow('array')``
94+ | `` $row = $query->getNextRow('array')``
95+ | `` $row = $query->getPreviousRow('array')``
9696
9797.. note :: All the methods above will load the whole result into memory
9898 (prefetching). Use ``getUnbufferedRow() `` for processing large
You can’t perform that action at this time.
0 commit comments