File: SDO-DAS-Relational-executePreparedQuery.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 (280 lines) | stat: -rw-r--r-- 9,527 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
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.4 $ -->
<refentry id="function.SDO-DAS-Relational-executePreparedQuery">
 <refnamediv>
  <refname>SDO_DAS_Relational::executePreparedQuery</refname>
  <refpurpose>
   Executes an SQL query passed as a prepared statement, with a 
   list of values to substitute for placeholders, and return the 
   results as a normalised data graph.
  </refpurpose>
 </refnamediv>

 <refsect1 role="description">
  &reftitle.description;
  <methodsynopsis>
   <type>SDODataObject</type>
   <methodname>SDO_DAS_Relational::executePreparedQuery</methodname>
   <methodparam>
    <type>PDO</type>
    <parameter>database_handle</parameter>
   </methodparam>
   <methodparam>
    <type>PDOStatement</type>
    <parameter>prepared_statement</parameter>
   </methodparam>
   <methodparam>
    <type>array</type>
    <parameter>value_list</parameter>
   </methodparam>
   <methodparam choice="opt">
    <type>array</type>
    <parameter>column_specifier</parameter>
   </methodparam>
  </methodsynopsis>
	
	  &warn.experimental.func;
	
  <para>
   Executes a given query against the relational database, 
   using the supplied PDO database handle.
   Differs from the simpler 
   <function>executeQuery</function>
   in that it takes a prepared statement and a list of values.
   This is the appropriate call to use either when the statement is 
   to executed a number of times with different arguments, and there
   is therefore a performance benefit to be had from preparing the 
   statement only once, or when the the SQL statement is to contain 
   varying values taken from a source that cannot be completely trusted.
   In this latter case it may be unsafe to construct the SQL statement
   by simply concatenating the parts of the statement together, 
   since the values may contain pieces of SQL. 
   To guard against this, a so-called SQL injection attack,
   it is safer to prepare the SQL statement with placeholders 
   (also known as parameter markers, denoted by '?') and supply a 
   list of the values to be substituted as a separate argument. 
   Otherwise this function is the same as 
   <function>executeQuery</function> in that 
   it uses the model that it built from the the metadata 
   to interpret the result set and returns a data graph.
  </para>
 </refsect1>

 <refsect1 role="parameters">
  &reftitle.parameters;
  <para>
   <variablelist>
    <varlistentry>
     <term>PDO_database_handle</term>
     <listitem>
      <para>
       Constructed using the PDO extension. 
       A typical line to construct a PDO database handle might look 
       like this:
       <programlisting role="php" id="sdo.das.rel.epq.examples.pdo">
<![CDATA[
$dbh = new PDO("mysql:dbname=COMPANYDB;host=localhost",DATABASE_USER,DATABASE_PASSWORD);
]]>
       </programlisting>
      </para>
     </listitem>
    </varlistentry>
    <varlistentry>
     <term>prepared_statement</term>
     <listitem>
      <para>
       A prepared SQL statement to be executed against the database.
       This will have been prepared by PDO's
       <function>prepare</function>
       method.
      </para>
     </listitem>
    </varlistentry>
    <varlistentry>
     <term>value_list</term>
     <listitem>
      <para>
       An array of the values to be substituted into the 
       SQL statement in place of the placeholders. In the event
       that there are no placeholders or parameter markers in the
       SQL statement then this argument can be specified as &null;
       or as an empty array; 
      </para>
     </listitem>
    </varlistentry>
    <varlistentry>
     <term>column_specifier</term>
     <listitem>
      <para>
       The Relational DAS needs to examine the result set and 
       for every column, know which table and which column of 
       that table it came from.
       In some circumstances it can find this information for itself, 
       but sometimes it cannot.
       In these cases a column specifier is needed, 
       which is an array that identifies the columns.
       Each entry in the array is simply a string in the form
       <varname>table-name.column_name</varname>.
      </para>
	          

      <para>
       The column specifier is needed when there are duplicate 
       column names in the database metadata,
       For example, in the database used within the examples, 
       all the tables have both a
       <varname>id</varname>
       and a
       <varname>name</varname>
       column.
       When the Relational DAS fetches the result set from PDO 
       it can do so with the PDO_FETCH_ASSOC attribute, 
       which will cause the columns in the results set 
       to be labelled with  the column name, but will not distinguish 
       duplicates.
       So this will only work when there are no duplicates 
       possible in the results set.
      </para>
	          
      <para>
       To summarise, specify a column specifier array whenever there 
       is any uncertainty about which column could be from which table and
       only omit it when every column name in the database metadata is unique.
      </para>
	          
      <para>
       All of the examples in the
       <link linkend='sdo.das.rel.examples'>Examples</link>
       use a column specifier.
       There is one example in the
       <filename>Scenarios</filename>
       directory of the installation that does not: 
       that which works with just the employee table, 
       and because it works with just one table, 
       there can not exist duplicate column names.
      </para>
     </listitem>
    </varlistentry>
   </variablelist>
  </para>
 </refsect1>

 <refsect1 role="returnvalues">
  &reftitle.returnvalues;
  <para>
   Returns a data graph. 
   Specifically, it returns a root object of a special type.
   Under this root object will be the data from the result set.
   The root object will have a multi-valued containment property 
   with the same name as the application root type 
   specified on the constructor,
   and that property will contain one or more data objects 
   of the application root type.
  </para>
  <para>
   In the event that the query returns no data, 
   the special root object will still be returned but 
   the containment property for the application root type will be empty.
  </para>
 </refsect1>
	
 <refsect1 role="errors">
  &reftitle.errors;
  <para>
   <function>SDO_DAS_Relational::executeQuery</function>
   can throw an SDO_DAS_Relational_Exception if it is unable 
   to construct the data graph correctly.
   This can occur for a  number of reasons: 
   for example if it finds that it does not have primary keys 
   in the result set for all the objects.
   It also catches any PDO exceptions and obtains PDO 
   diagnostic information which it includes in an 
   SDO_DAS_Relational_Exception which it then throws.
  </para>
 </refsect1>
	
 <refsect1 role="examples">
  &reftitle.examples;
  <para>
   <example>
    <title>Retrieving a data object using
    <function>executePreparedQuery</function></title>
    <para>
     In this example a single data object is retrieved from the database 
     - or possibly more than one if there is more than one company 
     called 'Acme'. For each company returned, the
     <varname>name</varname>
     and
     <varname>id</varname>
     properties are echoed.
    </para>
    <para>
     Other examples of the use of 
     <function>executePreparedQuery</function>
     can be found in the example code supplied in 
     <filename>sdo/DAS/Relational/Scenarios</filename>
     .
    </para>
    <programlisting role="php" id="sdo.das.rel.functions.epq.1c-R">
<![CDATA[
<?php
require_once 'SDO/DAS/Relational.php';
require_once 'company_metadata.inc.php';

/**************************************************************
 * Construct the DAS with the metadata
 ***************************************************************/
$das = new SDO_DAS_Relational ($database_metadata,'company',$SDO_reference_metadata);

/**************************************************************
 * Get a database connection
 ***************************************************************/
$dbh = new PDO(PDO_DSN,DATABASE_USER,DATABASE_PASSWORD);

/**************************************************************
 * Issue a query to obtain a company object - possibly more if they exist
 * Use a prepared query with a placeholder.
 ***************************************************************/
$name = 'Acme';
$pdo_stmt = $dbh->prepare('select name, id from company where name=?');
$root = $das->executePreparedQuery(
    $dbh, 
    $pdo_stmt,
    array($name), 
    array('company.name', 'company.id'));

/**************************************************************
 * Echo name and id 
 ***************************************************************/
foreach ($root['company'] as $company) {
	echo "Company obtained from the database has name = " . 
    $company['name'] . " and id " . $company['id'] . "\n";
}
?>
]]>
    </programlisting>
   </example>
  </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
-->