From 8f5c7061d638d3c514d6761d9aaae6500c2e285f Mon Sep 17 00:00:00 2001 From: Jenny Tam Date: Fri, 25 May 2018 09:27:48 -0700 Subject: [PATCH] Corrected the expected output --- test/bvt/sqlsrv/msdn_sqlsrv_query_stream.phpt | 64 +++++++++---------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/test/bvt/sqlsrv/msdn_sqlsrv_query_stream.phpt b/test/bvt/sqlsrv/msdn_sqlsrv_query_stream.phpt index 2e002f3e..9a7a14fe 100644 --- a/test/bvt/sqlsrv/msdn_sqlsrv_query_stream.phpt +++ b/test/bvt/sqlsrv/msdn_sqlsrv_query_stream.phpt @@ -2,51 +2,51 @@ insert stream. --SKIPIF-- --FILE-- -"$databaseName", "UID"=>"$uid", "PWD"=>"$pwd"); -$conn = sqlsrv_connect($server, $connectionInfo); -if ($conn === false) { - echo "Could not connect.\n"; - die(print_r(sqlsrv_errors(), true)); -} +"$databaseName", "UID"=>"$uid", "PWD"=>"$pwd"); +$conn = sqlsrv_connect($server, $connectionInfo); +if ($conn === false) { + echo "Could not connect.\n"; + die(print_r(sqlsrv_errors(), true)); +} /* Remove any records with from the table with ProductID = 999*/ $productID = 999; $tsql = "DELETE FROM Production.ProductReview WHERE ProductID = $productID"; sqlsrv_query($conn, $tsql); - -/* Set up the Transact-SQL query. */ + +/* Set up the Transact-SQL query. */ $tsql = "INSERT INTO Production.ProductReview (ProductID, ReviewerName, ReviewDate, EmailAddress, Rating, Comments) - VALUES (?, ?, ?, ?, ?, ?)"; + VALUES (?, ?, ?, ?, ?, ?)"; -/* Set the parameter values and put them in an array. -Note that $comments is opened as a stream. */ +/* Set the parameter values and put them in an array. +Note that $comments is opened as a stream. */ $number = rand(99, 9999); $input = "[Insert some number $number]"; /* There is no record in this table with ProductID = 999 */ -$name = 'Customer Name'; -$date = date("Y-m-d"); -$email = 'customer@name.com'; -$rating = 3; +$name = 'Customer Name'; +$date = date("Y-m-d"); +$email = 'customer@name.com'; +$rating = 3; $comments = fopen("data://text/plain,$input", "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)); -} +$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)); +} /* Read it back to check the comment */ $tsql = "SELECT Comments FROM Production.ProductReview @@ -67,10 +67,10 @@ $tsql = "DELETE FROM Production.ProductReview WHERE ProductID = $productID"; sqlsrv_query($conn, $tsql); echo "Done" . PHP_EOL; - -/* Free statement and connection resources. */ -sqlsrv_free_stmt($stmt); -sqlsrv_close($conn); + +/* Free statement and connection resources. */ +sqlsrv_free_stmt($stmt); +sqlsrv_close($conn); ?> --EXPECT-- -The query was successfully executed. \ No newline at end of file +Done