mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-17 21:16:57 +08:00
157 lines
6.8 KiB
HTML
157 lines
6.8 KiB
HTML
<!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 class="docs"><div id="layout">
|
||
<div id="layout-content"><div id="function.odbc-execute" class="refentry">
|
||
<div class="refnamediv">
|
||
<h1 class="refname">odbc_execute</h1>
|
||
<p class="verinfo">(PHP 4, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">odbc_execute</span> — <span class="dc-title">Execute a prepared statement</span></p>
|
||
|
||
</div>
|
||
|
||
<div class="refsect1 description" id="refsect1-function.odbc-execute-description">
|
||
<h3 class="title">说明</h3>
|
||
<div class="methodsynopsis dc-description">
|
||
<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>
|
||
] ) : <span class="type">bool</span></div>
|
||
|
||
<p class="para rdfs-comment">
|
||
Executes a statement prepared with <span class="function"><a href="odbc_prepare.html" class="function">odbc_prepare()</a></span>.
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 parameters" id="refsect1-function.odbc-execute-parameters">
|
||
<h3 class="title">参数</h3>
|
||
<p class="para">
|
||
<dl>
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">result_id</code></dt>
|
||
|
||
<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="odbc_prepare.html" class="function">odbc_prepare()</a></span>.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">parameters_array</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
Parameters in <code class="parameter">parameter_array</code> 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 <code class="parameter">parameter_array</code> 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="odbc_exec.html" class="function">odbc_exec()</a></span>).
|
||
</span>
|
||
</dd>
|
||
|
||
|
||
</dl>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 returnvalues" id="refsect1-function.odbc-execute-returnvalues">
|
||
<h3 class="title">返回值</h3>
|
||
<p class="para">
|
||
成功时返回 <strong><code>TRUE</code></strong>, 或者在失败时返回 <strong><code>FALSE</code></strong>。
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 examples" id="refsect1-function.odbc-execute-examples">
|
||
<h3 class="title">范例</h3>
|
||
<p class="para">
|
||
<div class="example" id="example-981">
|
||
<p><strong>Example #1 <span class="function"><strong>odbc_execute()</strong></span> and <span class="function"><a href="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"><pre><span style="color: #000000">
|
||
<span style="color: #0000BB"><?php<br />$a </span><span style="color: #007700">= </span><span style="color: #0000BB">1</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$b </span><span style="color: #007700">= </span><span style="color: #0000BB">2</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$c </span><span style="color: #007700">= </span><span style="color: #0000BB">3</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$stmt </span><span style="color: #007700">= </span><span style="color: #0000BB">odbc_prepare</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">, </span><span style="color: #DD0000">'CALL myproc(?,?,?)'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$success </span><span style="color: #007700">= </span><span style="color: #0000BB">odbc_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$stmt</span><span style="color: #007700">, array(</span><span style="color: #0000BB">$a</span><span style="color: #007700">, </span><span style="color: #0000BB">$b</span><span style="color: #007700">, </span><span style="color: #0000BB">$c</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">?></span>
|
||
</span>
|
||
</pre></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">更新日志</h3>
|
||
<p class="para">
|
||
<table class="doctable informaltable">
|
||
|
||
<thead>
|
||
<tr>
|
||
<th>版本</th>
|
||
<th>说明</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">安全模式</a> and
|
||
<a href="ini.core.html#ini.open-basedir" class="link">open-basedir</a> restrictions
|
||
in <code class="parameter">parameters_array</code>.
|
||
</td>
|
||
</tr>
|
||
|
||
</tbody>
|
||
|
||
</table>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 seealso" id="refsect1-function.odbc-execute-seealso">
|
||
<h3 class="title">参见</h3>
|
||
<p class="para">
|
||
<ul class="simplelist">
|
||
<li class="member"><span class="function"><a href="odbc_prepare.html" class="function" rel="rdfs-seeAlso">odbc_prepare()</a> - Prepares a statement for execution</span></li>
|
||
</ul>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
</div></div></div></body></html> |