Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 4927

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>Execute a prepared statement</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.odbc-exec.html">odbc_exec</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.odbc-fetch-array.html">odbc_fetch_array</a></div>
 <div class="up"><a href="ref.uodbc.html">ODBC Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="function.odbc-execute" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">odbc_execute</h1>
  <p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">odbc_execute</span> &mdash; <span class="dc-title">Execute a prepared statement</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.odbc-execute-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">bool</span> <span class="methodname"><strong>odbc_execute</strong></span>
    ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$result_id</code></span>
   [, <span class="methodparam"><span class="type">array</span> <code class="parameter">$parameters_array</code></span>
  ] )</div>

  <p class="para rdfs-comment">
   Executes a statement prepared with  <span class="function"><a href="function.odbc-prepare.html" class="function">odbc_prepare()</a></span>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.odbc-execute-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em><code class="parameter">result_id</code></em></span>
     <dd>

      <p class="para">
       The result id <span class="type"><a href="language.types.resource.html" class="type resource">resource</a></span>, from  <span class="function"><a href="function.odbc-prepare.html" class="function">odbc_prepare()</a></span>.
      </p>
     </dd>

    </dt>

    <dt>

     <span class="term"><em><code class="parameter">parameters_array</code></em></span>
     <dd>

      <p class="para">
       Parameters in <em><code class="parameter">parameter_array</code></em> will be
       substituted for placeholders in the prepared statement in order.
       Elements of this array will be converted to strings by calling this
       function.
      </p>
      <p class="para">
       Any parameters in <em><code class="parameter">parameter_array</code></em> 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.
      </p>
      <span class="simpara">
       If you wish to store a string which actually begins and ends with
       single quotes, you must add a space or other non-single-quote character
       to the beginning or end of the parameter, which will prevent the
       parameter from 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  <span class="function"><a href="function.odbc-exec.html" class="function">odbc_exec()</a></span>).
      </span>
     </dd>

    </dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.odbc-execute-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns <strong><code>TRUE</code></strong> on success or <strong><code>FALSE</code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.odbc-execute-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-892">
    <p><strong>Example #1  <span class="function"><strong>odbc_execute()</strong></span> and  <span class="function"><a href="function.odbc-prepare.html" class="function">odbc_prepare()</a></span> example</strong></p>
    <div class="example-contents"><p>
     In the following code, <var class="varname"><var class="varname">$success</var></var> will only be
     <strong><code>TRUE</code></strong> if all three parameters to myproc are IN parameters:
    </p></div>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$a&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$b&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">2</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$c&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">3</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$stmt&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">odbc_prepare</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'CALL&nbsp;myproc(?,?,?)'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$success&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">odbc_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$stmt</span><span style="color: #007700">,&nbsp;array(</span><span style="color: #0000BB">$a</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$b</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$c</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
    </div>

   </div>
  </p>
  <p class="para">
   If you need to call a stored procedure using INOUT or OUT parameters,
   the recommended workaround is to use a native extension for your database
   (for example, <a href="ref.mssql.html" class="link">mssql</a> for MS SQL Server,
   or <a href="ref.mssql.html" class="link">oci8</a> for Oracle).
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.odbc-execute-changelog">
  <h3 class="title">Changelog</h3>
  <p class="para">
   <table class="doctable informaltable">
    
     <thead>
      <tr>
       <th>Version</th>
       <th>Description</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td>4.2.0</td>
       <td>
        File reading is now subject to <a href="ini.sect.safe-mode.html#ini.safe-mode" class="link">safe mode</a> and
        <a href="ini.core.html#ini.open-basedir" class="link">open-basedir</a> restrictions
        in <em><code class="parameter">parameters_array</code></em>.
       </td>
      </tr>

      <tr>
       <td>4.1.1</td>
       <td>
        <a href="features.remote-files.html" class="link">Remote files</a>
        are no longer supported in <em><code class="parameter">parameters_array</code></em>.
       </td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.odbc-execute-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="function.odbc-prepare.html" class="function" rel="rdfs-seeAlso">odbc_prepare()</a> - Prepares a statement for execution</span></li>
   </ul>
  </p>
 </div>


</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.odbc-exec.html">odbc_exec</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.odbc-fetch-array.html">odbc_fetch_array</a></div>
 <div class="up"><a href="ref.uodbc.html">ODBC Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>