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
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/uodbc.xml, last change in rev 1.5 -->
<refentry id="function.odbc-execute">
<refnamediv>
<refname>odbc_execute</refname>
<refpurpose>Execute a prepared statement</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>bool</type><methodname>odbc_execute</methodname>
<methodparam><type>resource</type><parameter>result_id</parameter></methodparam>
<methodparam choice="opt"><type>array</type><parameter>parameters_array</parameter></methodparam>
</methodsynopsis>
<para>
Executes a statement prepared with
<function>odbc_prepare</function>.&return.success; The array
<parameter>parameters_array</parameter> only needs to be given if
you really have parameters in your statement.
</para>
<para>
Parameters in <parameter>parameter_array</parameter> will be
substituted for placeholders in the prepared statement in order.
Elements of this array will be converted to strings by calling this
function.
</para>
<para>
Any parameters in <parameter>parameter_array</parameter> which
start and end with single quotes will be taken as the name of a
file to read and send to the database server as the data for the
appropriate placeholder.
</para>
<note>
<para>
As of PHP 4.1.1, this file reading functionality has the
following restrictions:
<itemizedlist>
<listitem>
<simpara>
File reading is <emphasis>not</emphasis> subject to any
&safemode; or <link linkend="ini.open-basedir">open-basedir</link>
restrictions. This is fixed in PHP 4.2.0.
</simpara>
</listitem>
<listitem>
<simpara>
<link linkend="features.remote-files">Remote files</link>
are not supported.
</simpara>
</listitem>
<listitem>
<simpara>
If you wish to store a string which actually begins and ends
with single quotes, you must escape them or add a space or
other non-single-quote character to the beginning or end of
the parameter, which will prevent the parameter's being taken
as a file name. If this is not an option, then you must use
another mechanism to store the string, such as executing the
query directly with <function>odbc_exec</function>).
</simpara>
</listitem>
</itemizedlist>
</para>
</note>
</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
-->
|