blob: 784ea3246c2f1c31db768162b39f3a0088d9d685 [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3<head>
4
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6<title>Generating Query Results : CodeIgniter User Guide</title>
7
8<style type='text/css' media='all'>@import url('../userguide.css');</style>
9<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
10
11<script type="text/javascript" src="../nav/nav.js"></script>
12<script type="text/javascript" src="../nav/prototype.lite.js"></script>
13<script type="text/javascript" src="../nav/moo.fx.js"></script>
14<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
15
16<meta http-equiv='expires' content='-1' />
17<meta http-equiv= 'pragma' content='no-cache' />
18<meta name='robots' content='all' />
19<meta name='author' content='ExpressionEngine Dev Team' />
20<meta name='description' content='CodeIgniter User Guide' />
21
22</head>
23<body>
24
25<!-- START NAVIGATION -->
26<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
27<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
28<div id="masthead">
29<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
30<tr>
Derek Jones8917af72010-03-05 12:41:45 -060031<td><h1>CodeIgniter User Guide Version 2.0.0</h1></td>
Derek Allard2067d1a2008-11-13 22:59:24 +000032<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
33</tr>
34</table>
35</div>
36<!-- END NAVIGATION -->
37
38
39<!-- START BREADCRUMB -->
40<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
41<tr>
42<td id="breadcrumb">
43<a href="http://codeigniter.com/">CodeIgniter Home</a> &nbsp;&#8250;&nbsp;
44<a href="../index.html">User Guide Home</a> &nbsp;&#8250;&nbsp;
45<a href="index.html">Database Library</a> &nbsp;&#8250;&nbsp;
46Query Results
47</td>
48<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide&nbsp; <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />&nbsp;<input type="submit" class="submit" name="sa" value="Go" /></form></td>
49</tr>
50</table>
51<!-- END BREADCRUMB -->
52
53
54<br clear="all" />
55
56
57<!-- START CONTENT -->
58<div id="content">
59
60
61
62<h1>Generating Query Results</h1>
63
64
65<p>There are several ways to generate query results:</p>
66
67 <h2>result()</h2>
68
69 <p>This function returns the query result as an array of <strong>objects</strong>, or <strong>an empty array</strong> on failure.
70
71 Typically you'll use this in a foreach loop, like this:</p>
72
73 <code>
74 $query = $this->db->query("YOUR QUERY");<br />
75 <br />
76 foreach ($query->result() as $row)<br />
77 {<br />
78 &nbsp;&nbsp;&nbsp;echo $row->title;<br />
79 &nbsp;&nbsp;&nbsp;echo $row->name;<br />
80 &nbsp;&nbsp;&nbsp;echo $row->body;<br />
81 }</code>
82
83 <p>The above <dfn>function</dfn> is an alias of <dfn>result_object()</dfn>.</p>
84
85 <p>If you run queries that might <strong>not</strong> produce a result, you are encouraged to test the result first:</p>
86
87 <code>
88 $query = $this->db->query("YOUR QUERY");<br />
89 <br />
90 if ($query->num_rows() > 0)<br />
91 {<br />
92 &nbsp;&nbsp;&nbsp;foreach ($query->result() as $row)<br />
93 &nbsp;&nbsp;&nbsp;{<br />
94 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo $row->title;<br />
95 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo $row->name;<br />
96 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo $row->body;<br />
97 &nbsp;&nbsp;&nbsp;}<br />
98 }
99 </code>
100
101 <h2>result_array()</h2>
102
103 <p>This function returns the query result as a pure array, or an empty array when no result is produced. Typically you'll use this in a foreach loop, like this:</p>
104 <code>
105 $query = $this->db->query("YOUR QUERY");<br />
106 <br />
107 foreach ($query->result_array() as $row)<br />
108 {<br />
109 &nbsp;&nbsp;&nbsp;echo $row['title'];<br />
110 &nbsp;&nbsp;&nbsp;echo $row['name'];<br />
111 &nbsp;&nbsp;&nbsp;echo $row['body'];<br />
112 }</code>
113
114
115 <h2>row()</h2>
116
117 <p>This function returns a single result row. If your query has more than one row, it returns only the first row.
118 The result is returned as an <strong>object</strong>. Here's a usage example:</p>
119 <code>
120 $query = $this->db->query("YOUR QUERY");<br />
121 <br />
122 if ($query->num_rows() > 0)<br />
123 {<br />
124 &nbsp;&nbsp;&nbsp;$row = $query->row();
125 <br /><br />
126 &nbsp;&nbsp;&nbsp;echo $row->title;<br />
127 &nbsp;&nbsp;&nbsp;echo $row->name;<br />
128 &nbsp;&nbsp;&nbsp;echo $row->body;<br />
129 }
130 </code>
131
132 <p>If you want a specific row returned you can submit the row number as a digit in the first parameter:</p>
133
134 <code>$row = $query->row(<dfn>5</dfn>);</code>
135
136
137 <h2>row_array()</h2>
138
139 <p>Identical to the above <var>row()</var> function, except it returns an array. Example:</p>
140
141 <code>
142 $query = $this->db->query("YOUR QUERY");<br />
143 <br />
144 if ($query->num_rows() > 0)<br />
145 {<br />
146 &nbsp;&nbsp;&nbsp;$row = $query->row_array();
147 <br /><br />
148 &nbsp;&nbsp;&nbsp;echo $row['title'];<br />
149 &nbsp;&nbsp;&nbsp;echo $row['name'];<br />
150 &nbsp;&nbsp;&nbsp;echo $row['body'];<br />
151 }
152 </code>
153
154
155 <p>If you want a specific row returned you can submit the row number as a digit in the first parameter:</p>
156
157 <code>$row = $query->row_array(<dfn>5</dfn>);</code>
158
159
160 <p>In addition, you can walk forward/backwards/first/last through your results using these variations:</p>
161
162<p>
163 <strong>$row = $query->first_row()</strong><br />
164 <strong>$row = $query->last_row()</strong><br />
165 <strong>$row = $query->next_row()</strong><br />
166 <strong>$row = $query->previous_row()</strong>
167</p>
168
169<p>By default they return an object unless you put the word "array" in the parameter:</p>
170
171<p>
172 <strong>$row = $query->first_row('array')</strong><br />
173 <strong>$row = $query->last_row('array')</strong><br />
174 <strong>$row = $query->next_row('array')</strong><br />
175 <strong>$row = $query->previous_row('array')</strong>
176</p>
177
178
179
180<h1>Result Helper Functions</h1>
181
182
183<h2>$query->num_rows()</h2>
184<p>The number of rows returned by the query. Note: In this example, <dfn>$query</dfn> is the variable that the query result object is assigned to:</p>
185
186<code>$query = $this->db->query('SELECT * FROM my_table');<br /><br />
187echo $query->num_rows();
188</code>
189
190<h2>$query->num_fields()</h2>
191<p>The number of FIELDS (columns) returned by the query. Make sure to call the function using your query result object:</p>
192
193<code>$query = $this->db->query('SELECT * FROM my_table');<br /><br />
194echo $query->num_fields();
195</code>
196
197
198
199<h2>$query->free_result()</h2>
200<p>It frees the memory associated with the result and deletes the result resource ID. Normally PHP frees its memory automatically at the end of script
201execution. However, if you are running a lot of queries in a particular script you might want to free the result after each query result has been
202generated in order to cut down on memory consumptions. Example:
203</p>
204
205<code>$query = $this->db->query('SELECT title FROM my_table');<br /><br />
206foreach ($query->result() as $row)<br />
207{<br />
208&nbsp;&nbsp;&nbsp;echo $row->title;<br />
209}<br />
210$query->free_result(); // The $query result object will no longer be available<br />
211<br />
212$query2 = $this->db->query('SELECT name FROM some_table');<br /><br />
213$row = $query2->row();<br />
214echo $row->name;<br />
215$query2->free_result(); // The $query2 result object will no longer be available
216</code>
217
218
219
220
221
222</div>
223<!-- END CONTENT -->
224
225
226<div id="footer">
227<p>
228Previous Topic:&nbsp;&nbsp;<a href="queries.html">Queries</a>
229&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
230<a href="#top">Top of Page</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
231<a href="../index.html">User Guide Home</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
232Next Topic:&nbsp;&nbsp;<a href="helpers.html">Query Helper Functions</a>
233</p>
Derek Jones7f3719f2010-01-05 13:35:37 +0000234<p><a href="http://codeigniter.com">CodeIgniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006-2010 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000235</div>
236
237</body>
adminfb28bb82006-09-24 17:59:33 +0000238</html>