如何:將資料當做陣列擷取
SQL Server Driver for PHP 會提供 sqlsrv_fetch_array 函數,將資料列當做陣列擷取。本主題提供兩個範例說明如何將資料列當做陣列擷取:
第一個範例會檢查如何使用 sqlsrv_fetch_array,將資料列當做數值索引陣列擷取。
第二個範例會檢查如何使用 sqlsrv_fetch_array,將資料列當做關聯陣列擷取。
注意
根據預設,sqlsrv_fetch_array 會擷取具有數值和關聯索引鍵的陣列。
範例
下列範例會將結果集的每一個資料列當做數值索引陣列來擷取。
此範例會從 AdventureWorks 資料庫中,針對指定日期和庫存數量 (StockQty) 少於指定值的產品來擷取 Purchasing.PurchaseOrderDetail 資料表中的產品資訊。
此範例假設 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 = "SELECT ProductID,
UnitPrice,
StockedQty
FROM Purchasing.PurchaseOrderDetail
WHERE StockedQty < 3
AND DueDate='2002-01-29'";
/* Execute the query. */
$stmt = sqlsrv_query( $conn, $tsql);
if ( $stmt )
{
echo "Statement executed.\n";
}
else
{
echo "Error in statement execution.\n";
die( print_r( sqlsrv_errors(), true));
}
/* Iterate through the result set printing a row of data upon each
iteration.*/
while( $row = sqlsrv_fetch_array( $stmt, SQLSRV_FETCH_NUMERIC))
{
echo "ProdID: ".$row[0]."\n";
echo "UnitPrice: ".$row[1]."\n";
echo "StockedQty: ".$row[2]."\n";
echo "-----------------\n";
}
/* Free statement and connection resources. */
sqlsrv_free_stmt( $stmt);
sqlsrv_close( $conn);
?>
sqlsrv_fetch_array 函數一定會根據< 預設 PHP 資料類型>傳回資料。如需有關如何指定 PHP 資料類型的詳細資訊,請參閱<如何:指定 PHP 資料類型>或<如何:擷取單一欄位>。
如果擷取了沒有名稱的欄位,陣列元素的關聯索引鍵將會是空字串 ("")。如需詳細資訊,請參閱<sqlsrv_fetch_array>。
以下範例會將結果集的每一個資料列當做關聯陣列來擷取。陣列的索引鍵會對應到結果集的資料行名稱。
此範例會從 AdventureWorks 資料庫中,針對庫存數量 (StockQty) 少於指定值及具有指定到期日 (DueDate) 的產品來擷取 Purchasing.PurchaseOrderDetail 資料表中的產品資訊。
此範例假設 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 = "SELECT ProductID,
UnitPrice,
StockedQty
FROM Purchasing.PurchaseOrderDetail
WHERE StockedQty < 3
AND DueDate='2002-01-29'";
/* Execute the query. */
$stmt = sqlsrv_query( $conn, $tsql);
if ( $stmt )
{
echo "Statement executed.\n";
}
else
{
echo "Error in statement execution.\n";
die( print_r( sqlsrv_errors(), true));
}
/* Iterate through the result set printing a row of data upon each
iteration. Note that the returned array is an associative array with
keys corresponding to column names of the result set. */
while( $row = sqlsrv_fetch_array( $stmt, SQLSRV_FETCH_ASSOC))
{
echo "ProdID: ".$row['ProductID']."\n";
echo "UnitPrice: ".$row['UnitPrice']."\n";
echo "StockedQty: ".$row['StockedQty']."\n";
echo "-----------------\n";
}
/* Free statement and connection resources. */
sqlsrv_free_stmt( $stmt);
sqlsrv_close( $conn);
?>
sqlsrv_fetch_array 函數一定會根據< 預設 PHP 資料類型>傳回資料。如需有關如何指定 PHP 資料類型的詳細資訊,請參閱<如何:指定 PHP 資料類型>或<如何:擷取單一欄位>。