mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-19 18:38:55 +00:00

Use consistent line terminator. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@317663 c90b9560-bf6c-de11-be94-00142212c4b1
117 lines
No EOL
3.1 KiB
XML
117 lines
No EOL
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<refentry xml:id="function.sqlsrv-send-stream-data" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>sqlsrv_send_stream_data</refname>
|
|
<refpurpose>Sends data from parameter streams to the server</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>sqlsrv_send_stream_data</methodname>
|
|
<methodparam><type>resource</type><parameter>stmt</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Send data from parameter streams to the server. Up to 8 KB of data is sent
|
|
with each call.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>stmt</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
A statement resource returned by <function>sqlsrv_query</function> or
|
|
<function>sqlsrv_execute</function>.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Returns &true; if there is more data to send and &false; if there is not.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title><function>sqlsrv_send_stream_data</function> example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$serverName = "serverName\sqlexpress";
|
|
$connectionInfo = array( "Database"=>"dbName", "UID"=>"username", "PWD"=>"password" );
|
|
$conn = sqlsrv_connect( $serverName, $connectionInfo);
|
|
if( $conn === false ) {
|
|
die( print_r( sqlsrv_errors(), true));
|
|
}
|
|
|
|
$sql = "UPDATE Table_1 SET data = ( ?) WHERE id = 100";
|
|
|
|
// Open parameter data as a stream and put it in the $params array.
|
|
$data = fopen( "data://text/plain,[ Lengthy content here. ]", "r");
|
|
$params = array( &$data);
|
|
|
|
// Prepare the statement. Use the $options array to turn off the
|
|
// default behavior, which is to send all stream data at the time of query
|
|
// execution.
|
|
$options = array("SendStreamParamsAtExec"=>0);
|
|
$stmt = sqlsrv_prepare( $conn, $sql, $params, $options);
|
|
|
|
sqlsrv_execute( $stmt);
|
|
|
|
// Send up to 8K of parameter data to the server
|
|
// with each call to sqlsrv_send_stream_data.
|
|
$i = 1;
|
|
while( sqlsrv_send_stream_data( $stmt)) {
|
|
$i++;
|
|
}
|
|
echo "$i calls were made.";
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>sqlsrv_prepare</function></member>
|
|
<member><function>sqlsrv_query</function></member>
|
|
</simplelist>
|
|
</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:"~/.phpdoc/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
|
|
--> |