|
sqlsrv_free_stmtFrees all resources for the specified statement 説明
bool sqlsrv_free_stmt(resource
$stmt )Frees all resources for the specified statement. The statement cannot be used after sqlsrv_free_stmt has been called on it. If sqlsrv_free_stmt is called on an in-progress statement that alters server state, statement execution is terminated and the statement is rolled back. パラメータ
戻り値
成功した場合に 例
例1 sqlsrv_free_stmt example
注意The main difference between sqlsrv_free_stmt and sqlsrv_cancel is that a statement resource cancelled with sqlsrv_cancel can be re-executed if it was created with sqlsrv_prepare. A statement resource cancelled with sqlsrv_free_statement cannot be re-executed. 参考
|