File: dbx-query.xml

package info (click to toggle)
php-doc 20061001-1
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 45,764 kB
  • ctags: 1,611
  • sloc: xml: 502,485; php: 7,645; cpp: 500; makefile: 297; perl: 161; sh: 141; awk: 28
file content (347 lines) | stat: -rw-r--r-- 10,928 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.18 $ -->
<!-- splitted from ./en/functions/dbx.xml, last change in rev 1.3 -->
  <refentry id="function.dbx-query">
   <refnamediv>
    <refname>dbx_query</refname>
    <refpurpose>Send a query and fetch all results (if any)</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
     <methodsynopsis>
      <type>mixed</type><methodname>dbx_query</methodname>
      <methodparam><type>object</type><parameter>link_identifier</parameter></methodparam>
      <methodparam><type>string</type><parameter>sql_statement</parameter></methodparam>
      <methodparam choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
     </methodsynopsis>
    <simpara>
     <function>dbx_query</function> returns an object or <literal>1</literal> 
     on success, and <literal>0</literal> on failure. The result object is 
     returned only if the query given in <parameter>sql_statement</parameter>
     produces a result set (i.e. a SELECT query, even if the result set is
     empty). 
    </simpara>
    <example>
     <title>How to handle the returned value</title>
     <programlisting role="php">
<![CDATA[
<?php
$link   = dbx_connect(DBX_ODBC, "", "db", "username", "password")
    or die("Could not connect");

$result = dbx_query($link, 'SELECT id, parentid, description FROM table');

if (is_object($result) ) {
    // ... do some stuff here, see detailed examples below ...
    // first, print out field names and types 
    // then, draw a table filled with the returned field values
} else {
    exit("Query failed");
}

dbx_close($link);
?>
]]>
     </programlisting>
    </example>
    <para>
     The <parameter>flags</parameter> parameter is used to control the amount of
     information that is returned. It may be any combination of the following 
     constants with the bitwise OR operator (|). The DBX_COLNAMES_* flags 
     override the dbx.colnames_case setting from &php.ini;.
     <variablelist>
      <varlistentry>
       <term>
        <constant>DBX_RESULT_INDEX</constant>
       </term>
       <listitem>
        <simpara>
         It is <emphasis>always</emphasis> set, that is, the returned object 
         has a <property>data</property> property which is a 2 dimensional
         array indexed numerically. For example, in the expression 
         <literal>data[2][3]</literal> <literal>2</literal> stands for the row
         (or record) number and <literal>3</literal> stands for the column 
         (or field) number. The first row and column are indexed at 0.
        </simpara>
        <simpara>
         If <constant>DBX_RESULT_ASSOC</constant> is also specified, the 
         returning object contains the information related to 
         <constant>DBX_RESULT_INFO</constant> too, even if it was not specified. 
        </simpara>
       </listitem>
      </varlistentry>
      <varlistentry>
       <term>
        <constant>DBX_RESULT_INFO</constant>
       </term>
       <listitem>
        <simpara>
         It provides info about columns, such as field names and field types.
        </simpara>
       </listitem>
      </varlistentry>
      <varlistentry>
       <term>
        <constant>DBX_RESULT_ASSOC</constant>
       </term>
       <listitem>
        <simpara>
         It effects that the field values can be accessed with the respective 
         column names used as keys to the returned object's 
         <property>data</property> property.
        </simpara>
        <simpara>
         Associated results are actually references to the numerically indexed 
         data, so modifying <literal>data[0][0]</literal> causes that
         <literal>data[0]['field_name_for_first_column']</literal> is modified
         as well.
        </simpara>
       </listitem>
      </varlistentry>
      <varlistentry>
       <term>
        <constant>DBX_RESULT_UNBUFFERED</constant> (PHP 5)
       </term>
       <listitem>
        <simpara>
         This flag will not create the <property>data</property> property, and 
         the <property>rows</property> property will initially be 0. Use this 
         flag for large datasets, and use <function>dbx_fetch_row</function> to
         retrieve the results row by row.
        </simpara>
        <simpara>
         The <function>dbx_fetch_row</function> function will return rows that
         are conformant to the flags set with this query. Incidentally, it will
         also update the <property>rows</property> each time it is called.
        </simpara>
       </listitem>
      </varlistentry>
      <varlistentry>
       <term>
        <constant>DBX_COLNAMES_UNCHANGED</constant> (available from PHP 4.3.0)
       </term>
       <listitem>
        <simpara>
         The case of the returned column names will not be changed.
        </simpara>
       </listitem>
      </varlistentry>
      <varlistentry>
       <term>
        <constant>DBX_COLNAMES_UPPERCASE</constant> (available from PHP 4.3.0)
       </term>
       <listitem>
        <simpara>
         The case of the returned column names will be changed to 
         uppercase.
        </simpara>
       </listitem>
      </varlistentry>
      <varlistentry>
       <term>
        <constant>DBX_COLNAMES_LOWERCASE</constant> (available from PHP 4.3.0)
       </term>
       <listitem>
        <simpara>
         The case of the returned column names will be changed to 
         lowercase.
        </simpara>
       </listitem>
      </varlistentry>
     </variablelist>
     Note that <constant>DBX_RESULT_INDEX</constant> is always used, regardless 
     of the actual value of <parameter>flags</parameter> parameter. This means 
     that only the following combinations are effective:
     <itemizedlist>
      <listitem>
       <simpara>
        <constant>DBX_RESULT_INDEX</constant>
       </simpara>
      </listitem>
      <listitem>
       <simpara>
        <constant>DBX_RESULT_INDEX</constant> |
        <constant>DBX_RESULT_INFO</constant>
       </simpara>
      </listitem>
      <listitem>
       <simpara>
        <constant>DBX_RESULT_INDEX</constant> |
        <constant>DBX_RESULT_INFO</constant> |
        <constant>DBX_RESULT_ASSOC</constant> - this is the default, if 
        <parameter>flags</parameter> is not specified.
       </simpara>
      </listitem>
     </itemizedlist>
    </para>
    <para>
     The returned <varname>object</varname> has four or five
     properties depending on <parameter>flags</parameter>:
     <variablelist>
      <varlistentry>
       <term>
        <property>handle</property>
       </term>
       <listitem>
        <para>
         It is a valid handle for the connected database, and as such it can be
         used in module specific functions (if required).
         <informalexample>
          <programlisting role="php">
<![CDATA[
<?php
$result = dbx_query($link, "SELECT id FROM table");
mysql_field_len($result->handle, 0);
?>
]]>
          </programlisting>
         </informalexample>
        </para>
       </listitem>
      </varlistentry>
      <varlistentry>
       <term>
        <property>cols</property> and <property>rows</property>
       </term>
       <listitem>
        <para>
         These contain the number of columns (or fields) and rows (or records)
         respectively.
         <informalexample>
          <programlisting role="php">
<![CDATA[
<?php
$result = dbx_query($link, 'SELECT id FROM table');
echo $result->rows; // number of records
echo $result->cols; // number of fields 
?>
]]>
          </programlisting>
         </informalexample>
        </para>
       </listitem>
      </varlistentry>
      <varlistentry>
       <term>
        <property>info</property> (optional)
       </term>
       <listitem>
        <simpara>
         It is returned only if either <constant>DBX_RESULT_INFO</constant> or
         <constant>DBX_RESULT_ASSOC</constant> is specified in the
         <parameter>flags</parameter> parameter. It is a 2 dimensional array,
         that has two named rows (<literal>name</literal> and 
         <literal>type</literal>) to retrieve column information.
        </simpara>
        <example>
         <title>lists each field's name and type</title>
         <programlisting role="php">
<![CDATA[
<?php
$result = dbx_query($link, 'SELECT id FROM table',
                     DBX_RESULT_INDEX | DBX_RESULT_INFO);

for ($i = 0; $i < $result->cols; $i++ ) {
    echo $result->info['name'][$i] . "\n";
    echo $result->info['type'][$i] . "\n";  
}
?>
]]>
         </programlisting>
        </example>
       </listitem>
      </varlistentry>
      <varlistentry>
       <term>
        <property>data</property>
       </term>
       <listitem>
        <simpara>
         This property contains the actual resulting data, possibly associated 
         with column names as well depending on <parameter>flags</parameter>.
         If <constant>DBX_RESULT_ASSOC</constant> is set, it is possible to use
         <literal>$result->data[2]["field_name"]</literal>.
        </simpara>
        <example>
         <title>outputs the content of data property into HTML table</title>
         <programlisting role="php">
<![CDATA[
<?php
$result = dbx_query($link, 'SELECT id, parentid, description FROM table');

echo "<table>\n";
foreach ($result->data as $row) {
    echo "<tr>\n";
    foreach ($row as $field) {
        echo "<td>$field</td>";
    }
    echo "</tr>\n";
}
echo "</table>\n";
?>
]]>
         </programlisting>
        </example>
        <example>
         <title>How to handle UNBUFFERED queries</title>
         <programlisting role="php">
<![CDATA[
<?php

$result = dbx_query ($link, 'SELECT id, parentid, description FROM table', DBX_RESULT_UNBUFFERED);

echo "<table>\n";
while ($row = dbx_fetch_row($result)) {
    echo "<tr>\n";
    foreach ($row as $field) {
        echo "<td>$field</td>";
    }
    echo "</tr>\n";
}
echo "</table>\n";

?>
]]>
         </programlisting>
        </example>
      </listitem>
      </varlistentry>
     </variablelist>
    </para>
    <note>
     <para>
      Always refer to the module-specific documentation as well.
     </para>
     <para>
      Column names for queries on an Oracle database are returned
      in lowercase.
     </para>
    </note>
    <para>
     See also <function>dbx_escape_string</function>, 
     <function>dbx_fetch_row</function> and 
     <function>dbx_connect</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->