如何:以流的形式发送数据

下载 PHP 驱动程序

Microsoft Drivers for PHP for SQL Server 利用 PHP 流将大型对象发送到服务器。 本主题中的示例演示如何以流的形式发送数据。 第一个示例使用 SQLSRV 驱动程序演示默认行为,即在查询执行时发送所有流数据。 第二个示例使用 SQLSRV 驱动程序演示如何一次性将最多八千字节 (8kB) 的流数据发送到服务器。

第三个示例演示如何使用 PDO_SQLSRV 驱动程序将流数据发送到服务器。

示例:在执行时发送流数据

以下示例向 AdventureWorks 数据库的 Production.ProductReview 表中插入一行。 客户意见 ($comments) 通过 PHP fopen 函数以流的形式打开,随后在查询执行几批流式传输到服务器

该示例假定已在本地计算机上安装了 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));  
}  
  
/* Set up the Transact-SQL query. */  
$tsql = "INSERT INTO Production.ProductReview (ProductID,   
                                               ReviewerName,  
                                               ReviewDate,  
                                               EmailAddress,  
                                               Rating,  
                                               Comments)  
         VALUES (?, ?, ?, ?, ?, ?)";  
  
/* Set the parameter values and put them in an array.  
Note that $comments is opened as a stream. */  
$productID = '709';  
$name = 'Customer Name';  
$date = date("Y-m-d");  
$email = 'customer@name.com';  
$rating = 3;  
$data = 'Insert any lengthy comment here.';
$comments = fopen('data:text/plain,'.urlencode($data), 'r');
$params = array($productID, $name, $date, $email, $rating, $comments);
  
/* Execute the query. All stream data is sent upon execution.*/  
$stmt = sqlsrv_query($conn, $tsql, $params);  
if ($stmt === false) {
     echo "Error in statement execution.\n";  
     die( print_r( sqlsrv_errors(), true));  
} else {
     echo "The query was successfully executed.";  
}  
  
/* Free statement and connection resources. */  
sqlsrv_free_stmt( $stmt);  
sqlsrv_close( $conn);  
?>  

示例:使用 sqlsrv_send_stream_data 发送流数据

下一个示例与上述示例相同,但禁用了在执行时发送所有流数据的默认行为。 该示例使用 sqlsrv_send_stream_data 将流数据发送到服务器。 每次调用 sqlsrv_send_stream_data 时,最多可以发送八千字节 (8kB) 的数据。 该脚本将对 sqlsrv_send_stream_data 发出的调用数进行计数并将该计数显示到控制台。

该示例假定已在本地计算机上安装了 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));  
}  
  
/* Set up the Transact-SQL query. */  
$tsql = "INSERT INTO Production.ProductReview (ProductID,   
                                               ReviewerName,  
                                               ReviewDate,  
                                               EmailAddress,  
                                               Rating,  
                                               Comments)  
         VALUES (?, ?, ?, ?, ?, ?)";  
  
/* Set the parameter values and put them in an array.  
Note that $comments is opened as a stream. */  
$productID = '709';  
$name = 'Customer Name';  
$date = date("Y-m-d");  
$email = 'customer@name.com';  
$rating = 3;  
$data = 'Insert any lengthy comment here.';
$comments = fopen('data:text/plain,'.urlencode($data), 'r');
$params = array($productID, $name, $date, $email, $rating, $comments);  
  
/* Turn off the default behavior of sending all stream data at  
execution. */  
$options = array("SendStreamParamsAtExec" => 0);  
  
/* Execute the query. */  
$stmt = sqlsrv_query($conn, $tsql, $params, $options);  
if ($stmt === false) {
     echo "Error in statement execution.\n";  
     die( print_r( sqlsrv_errors(), true));  
}  
  
/* 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);  
?>  

虽然本主题中的示例将字符数据发送到服务器,但任何格式的数据都可以采用流的形式发送。 例如,你还可以使用本主题中所演示的技术以流的形式发送采用二进制格式的图像。

示例:以流的形式发送图像

<?php  
   $server = "(local)";   
   $database = "Test";  
   $conn = new PDO( "sqlsrv:server=$server;Database = $database", "", "");  
  
   $binary_source = fopen( "data://text/plain,", "r");  
  
   $stmt = $conn->prepare("insert into binaries (imagedata) values (?)");  
   $stmt->bindParam(1, $binary_source, PDO::PARAM_LOB);   
  
   $conn->beginTransaction();  
   $stmt->execute();  
   $conn->commit();  
?>  

另请参阅

更新数据(适用于 SQL Server 的 Microsoft Drivers for PHP)

使用 SQLSRV 驱动程序以流的形式检索数据

文档中相关的代码示例