sqlsrv_num_fields
활성 결과 집합의 필드 수를 검색합니다. 이 함수는 실행 전후에 준비된 문에서 호출할 수 있습니다.
구문
sqlsrv_num_fields( resource $stmt)
매개 변수
$stmt: 대상 결과 집합이 활성 상태인 문입니다.
Return Value
활성 결과 집합의 필드 수를 나타내는 정수 값입니다. 오류가 발생하면 부울 값 false 가 반환됩니다.
예시
다음 예제에서는 쿼리를 실행하여 AdventureWorks 데이터베이스의 HumanResources.Department 테이블에 있는 상위 3개의 행에 대해 모든 필드를 검색합니다. sqlsrv_num_fields 함수는 결과 집합의 필드 수를 결정합니다. 이렇게 하면 반환된 각 행의 필드를 반복하여 데이터를 표시할 수 있습니다.
이 예시에서는 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 and execute the query. */
$tsql = "SELECT TOP (3) * FROM HumanResources.Department";
$stmt = sqlsrv_query($conn, $tsql);
if( $stmt === false)
{
echo "Error in executing query.\n";
die( print_r( sqlsrv_errors(), true));
}
/* Retrieve the number of fields. */
$numFields = sqlsrv_num_fields( $stmt );
/* Iterate through each row of the result set. */
while( sqlsrv_fetch( $stmt ))
{
/* Iterate through the fields of each row. */
for($i = 0; $i < $numFields; $i++)
{
echo sqlsrv_get_field($stmt, $i,
SQLSRV_PHPTYPE_STRING(SQLSRV_ENC_CHAR))." ";
}
echo "\n";
}
/* Free statement and connection resources. */
sqlsrv_free_stmt( $stmt );
sqlsrv_close( $conn );
?>