sqlsrv_get_field
從目前資料列的指定欄位擷取資料。 欄位資料必須依序存取。 例如,第一個欄位的資料不可在已存取第二個欄位的資料之後存取。
語法
sqlsrv_get_field( resource $stmt, int $fieldIndex [, int $getAsType])
參數
$stmt:對應至執行之陳述式的陳述式資源。
$fieldIndex:要擷取之欄位的索引。 索引從零開始。
$getAsType [選擇性]:SQLSRV 常數 (SQLSRV_PHPTYPE_*),可決定傳回資料的 PHP 資料類型。 如需支援之資料類型的資訊,請參閱常數 (Microsoft Drivers for PHP for SQL Server)。 若未指定傳回類型,將會傳回預設 PHP 類型。 如需關於預設 PHP 類型的詳細資訊,請參閱 Default PHP Data Types。 如需關於指定 PHP 資料類型的詳細資訊,請參閱 How to: Specify PHP Data Types。
傳回值
欄位資料。 您可以使用 $getAsType 參數,指定傳回資料的 PHP 資料類型。 若未指定傳回資料類型,將會傳回預設 PHP 資料類型。 如需關於預設 PHP 類型的詳細資訊,請參閱 Default PHP Data Types。 如需關於指定 PHP 資料類型的詳細資訊,請參閱 How to: Specify PHP Data Types。
備註
結合 sqlsrv_fetch 和 sqlsrv_get_field,可提供僅限轉送的資料存取。
結合 sqlsrv_fetch/sqlsrv_get_field,會僅將結果集資料列的一個欄位載入指令碼記憶體中,並允許指定 PHP 傳回類型。 (如需關於如何指定 PHP 傳回類型的詳細資訊,請參閱如何:指定 PHP 資料類型。)函數的此一組合,也可讓您以串流的形式擷取資料。 (如需以資料流形式擷取資料的資訊,請參閱使用 SQLSRV 驅動程式以資料流形式擷取資料。)
範例
下列範例會擷取包含產品評論和評論者名稱的資料列。 若要從結果集內擷取資料,請使用 sqlsrv_get_field。 此範例假設本機電腦上已安裝 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 and execute the query. Note that both ReviewerName and
Comments are of the SQL Server nvarchar type. */
$tsql = "SELECT ReviewerName, Comments
FROM Production.ProductReview
WHERE ProductReviewID=1";
$stmt = sqlsrv_query( $conn, $tsql);
if( $stmt === false )
{
echo "Error in statement preparation/execution.\n";
die( print_r( sqlsrv_errors(), true));
}
/* Make the first row of the result set available for reading. */
if( sqlsrv_fetch( $stmt ) === false )
{
echo "Error in retrieving row.\n";
die( print_r( sqlsrv_errors(), true));
}
/* Note: Fields must be accessed in order.
Get the first field of the row. Note that no return type is
specified. Data will be returned as a string, the default for
a field of type nvarchar.*/
$name = sqlsrv_get_field( $stmt, 0);
echo "$name: ";
/*Get the second field of the row as a stream.
Because the default return type for a nvarchar field is a
string, the return type must be specified as a stream. */
$stream = sqlsrv_get_field( $stmt, 1,
SQLSRV_PHPTYPE_STREAM( SQLSRV_ENC_CHAR));
while( !feof( $stream))
{
$str = fread( $stream, 10000);
echo $str;
}
/* Free the statement and connection resources. */
sqlsrv_free_stmt( $stmt);
sqlsrv_close( $conn);
?>