sqlsrv_free_stmt
지정된 문과 연결된 모든 리소스를 해제합니다. 이 문은 이 함수를 호출한 후에는 다시 사용할 수 없습니다.
구문
sqlsrv_free_stmt( resource $stmt)
매개 변수
$stmt: 닫을 문입니다.
Return Value
잘못된 매개 변수를 사용하여 함수를 호출하지 않는 한 부울 값 true입니다. 잘못된 매개 변수 를 사용하여 함수를 호출하면 false 가 반환됩니다.
참고 항목
Null 은 이 함수에 대해 유효한 매개 변수입니다. 이렇게 하면 스크립트에서 함수를 여러 번 호출할 수 있습니다. 예를 들어 오류 조건에서 문을 해제하고 스크립트의 끝에서 문을 다시 해제하는 경우 sqlsrv_free_stmt 대한 두 번째 호출은 오류 조건의 sqlsrv_free_stmt 첫 번째 호출이 문 리소스를 null로 설정하기 때문에 true를 반환합니다.
예시
다음 예제에서는 문 리소스를 만들고, 간단한 쿼리를 실행하고, sqlsrv_free_stmt 호출하여 문과 연결된 모든 리소스를 해제합니다. 이 예시에서는 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));
}
$stmt = sqlsrv_query( $conn, "SELECT * FROM Person.Contact");
if( $stmt )
{
echo "Statement executed.\n";
}
else
{
echo "Query could not be executed.\n";
die( print_r( sqlsrv_errors(), true));
}
/*-------------------------------
Process query results here.
-------------------------------*/
/* Free the statement and connection resources. */
sqlsrv_free_stmt( $stmt);
sqlsrv_close( $conn);
?>