sqlsrv_cancel
取消语句。 这意味着,将丢弃该语句的所有挂起结果。 在调用该函数后,如果已使用 sqlsrv_prepare 准备好语句,可重新执行该语句。 如果已使用与该语句关联的所有结果,则无需调用该函数。
语法
sqlsrv_cancel( resource $stmt)
parameters
$stmt:要取消的语句。
返回值
布尔值:如果操作成功,则为 true 。 否则为 false。
示例
下面的示例面向 AdventureWorks 数据库来执行查询,随后在变量 $salesTotal 达到指定数值后,使用结果并对结果进行计数。 之后将丢弃其余的查询结果。 该示例假定已在本地计算机上安装了 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));
}
/* Prepare and execute the query. */
$tsql = "SELECT OrderQty, UnitPrice FROM Sales.SalesOrderDetail";
$stmt = sqlsrv_prepare( $conn, $tsql);
if( $stmt === false )
{
echo "Error in statement preparation.\n";
die( print_r( sqlsrv_errors(), true));
}
if( sqlsrv_execute( $stmt ) === false)
{
echo "Error in statement execution.\n";
die( print_r( sqlsrv_errors(), true));
}
/* Initialize tracking variables. */
$salesTotal = 0;
$count = 0;
/* Count and display the number of sales that produce revenue
of $100,000. */
while( ($row = sqlsrv_fetch_array( $stmt)) && $salesTotal <=100000)
{
$qty = $row[0];
$price = $row[1];
$salesTotal += ( $price * $qty);
$count++;
}
echo "$count sales accounted for the first $$salesTotal in revenue.\n";
/* Cancel the pending results. The statement can be reused. */
sqlsrv_cancel( $stmt);
?>
注释
使用 sqlsrv_prepare 和 sqlsrv_execute 组合准备和执行的语句可在调用 sqlsrv_cancel 后通过 sqlsrv_execute 重新执行。 使用 sqlsrv_query 执行的语句无法在调用 sqlsrv_cancel 后重新执行。