sqlsrv_send_stream_data
매개 변수 스트림에서 서버로 데이터를 보냅니다. sqlsrv_send_stream_data에 대한 각 호출에서 최대 8킬로바이트(8K)의 데이터를 전송합니다.
참고 항목
기본적으로 쿼리가 실행될 때 모든 스트림 데이터를 서버에 보냅니다. 이 기본 동작이 변경되지 않으면 sqlsrv_send_stream_data 사용하여 스트림 데이터를 서버로 보낼 필요가 없습니다. 기본 동작 변경에 대한 내용은 sqlsrv_query 또는 sqlsrv_prepare의 매개 변수 섹션을 참조하세요.
구문
sqlsrv_send_stream_data( resource $stmt)
매개 변수
$stmt: 실행된 문에 해당하는 문 리소스입니다.
Return Value
부울: 보낼 데이터가 더 있는 경우 true 입니다. 그렇지 않으면 false입니다.
예시
다음 예제에서는 제품 검토를 스트림으로 열고 서버에 보냅니다. 실행 시 모든 스트림 데이터를 보내는 기본 동작은 사용하지 않도록 설정됩니다. 이 예시에서는 SQL Server 및 AdventureWorks 데이터베이스가 로컬 컴퓨터에 설치된 것으로 가정합니다. 모든 출력은 명령줄에서 예시가 실행될 때 콘솔에 기록됩니다.
<?php
/* Connect to the local server using Windows Authentication and
specify the AdventureWorks database as the database in use. */
$serverName = "(local)";
$connectionInfo = array( "Database"=>"AdventureWorks");
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if ($conn === false) {
echo "Could not connect.\n";
die( print_r( sqlsrv_errors(), true));
}
/* Define the query. */
$tsql = "UPDATE Production.ProductReview
SET Comments = (?)
WHERE ProductReviewID = 3";
/* Open parameter data as a stream and put it in the $params array. */
$data = 'Insert any lengthy comment here.';
$comment = fopen('data:text/plain,'.urlencode($data), 'r');
$params = array(&$comment);
/* 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, $tsql, $params, $options);
/* Execute the statement. */
sqlsrv_execute( $stmt);
/* Send up to 8K of parameter data to the server with each call to
sqlsrv_send_stream_data. Count the calls. */
$i = 1;
while (sqlsrv_send_stream_data($stmt)) {
echo "$i call(s) made.\n";
$i++;
}
/* Free statement and connection resources. */
sqlsrv_free_stmt( $stmt);
sqlsrv_close( $conn);
?>