mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-20 19:08:54 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@146503 c90b9560-bf6c-de11-be94-00142212c4b1
66 lines
2.1 KiB
XML
66 lines
2.1 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.4 $ -->
|
|
<!-- splitted from ./en/functions/mssql.xml, last change in rev 1.10 -->
|
|
<refentry id="function.mssql-next-result">
|
|
<refnamediv>
|
|
<refname>mssql_next_result</refname>
|
|
<refpurpose>Move the internal result pointer to the next result</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>mssql_next_result</methodname>
|
|
<methodparam><type>resource</type><parameter>result_id</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
When sending more than one SQL statement to the server or
|
|
executing a stored procedure with multiple results, it will cause
|
|
the server to return multiple result sets. This function will
|
|
test for additional results available form the server. If an
|
|
additional result set exists it will free the existing result set
|
|
and prepare to fetch the rows from the new result set. The
|
|
function will return &true; if an additional result set was
|
|
available or &false; otherwise.
|
|
</para>
|
|
<example>
|
|
<title><function>mssql_next_result</function> example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$link = mssql_connect("localhost", "userid", "secret");
|
|
mssql_select_db("MyDB", $link);
|
|
$SQL = "Select * from table1 select * from table2";
|
|
$rs = mssql_query($SQL, $link);
|
|
do {
|
|
while ($row = mssql_fetch_row($rs)) {
|
|
}
|
|
} while (mssql_next_result($rs));
|
|
mssql_free_result($rs);
|
|
mssql_close($link);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</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
|
|
-->
|