changed line endings

This commit is contained in:
David Puglielli 2017-09-12 17:08:23 -07:00
parent 471fce2bac
commit f0e12e3ba3

View file

@ -1,49 +1,49 @@
--TEST-- --TEST--
executes a query, then comsumes and counts results until reaches a specified amount. The remaining query results are then discarded. executes a query, then comsumes and counts results until reaches a specified amount. The remaining query results are then discarded.
--SKIPIF-- --SKIPIF--
--FILE-- --FILE--
<?php <?php
require('connect.inc'); require('connect.inc');
$connectionInfo = array( "Database"=>"$databaseName", "UID"=>"$uid", "PWD"=>"$pwd"); $connectionInfo = array( "Database"=>"$databaseName", "UID"=>"$uid", "PWD"=>"$pwd");
$conn = sqlsrv_connect( $server, $connectionInfo); $conn = sqlsrv_connect( $server, $connectionInfo);
if( $conn === false ) if( $conn === false )
{ {
echo "Could not connect.\n"; echo "Could not connect.\n";
die( print_r( sqlsrv_errors(), true)); die( print_r( sqlsrv_errors(), true));
} }
/* Prepare and execute the query. */ /* Prepare and execute the query. */
$tsql = "SELECT OrderQty, UnitPrice FROM Sales.SalesOrderDetail ORDER BY SalesOrderID"; $tsql = "SELECT OrderQty, UnitPrice FROM Sales.SalesOrderDetail ORDER BY SalesOrderID";
$stmt = sqlsrv_prepare( $conn, $tsql); $stmt = sqlsrv_prepare( $conn, $tsql);
if( $stmt === false ) if( $stmt === false )
{ {
echo "Error in statement preparation.\n"; echo "Error in statement preparation.\n";
die( print_r( sqlsrv_errors(), true)); die( print_r( sqlsrv_errors(), true));
} }
if( sqlsrv_execute( $stmt ) === false) if( sqlsrv_execute( $stmt ) === false)
{ {
echo "Error in statement execution.\n"; echo "Error in statement execution.\n";
die( print_r( sqlsrv_errors(), true)); die( print_r( sqlsrv_errors(), true));
} }
/* Initialize tracking variables. */ /* Initialize tracking variables. */
$salesTotal = 0; $salesTotal = 0;
$count = 0; $count = 0;
/* Count and display the number of sales that produce revenue /* Count and display the number of sales that produce revenue
of $100,000. */ of $100,000. */
while( ($row = sqlsrv_fetch_array( $stmt)) && $salesTotal <=100000) while( ($row = sqlsrv_fetch_array( $stmt)) && $salesTotal <=100000)
{ {
$qty = $row[0]; $qty = $row[0];
$price = $row[1]; $price = $row[1];
$salesTotal += ( $price * $qty); $salesTotal += ( $price * $qty);
$count++; $count++;
} }
echo "$count sales accounted for the first $$salesTotal in revenue.\n"; echo "$count sales accounted for the first $$salesTotal in revenue.\n";
/* Cancel the pending results. The statement can be reused. */ /* Cancel the pending results. The statement can be reused. */
sqlsrv_cancel( $stmt); sqlsrv_cancel( $stmt);
?> ?>
--EXPECTREGEX-- --EXPECTREGEX--
[1-9][0-9] sales accounted for the first $10[0-9]{4}\.[0-9]{2,4} in revenue. [1-9][0-9] sales accounted for the first $10[0-9]{4}\.[0-9]{2,4} in revenue.