mssql_free_statement(3) php man page | unix.com

Man Page: mssql_free_statement

Operating Environment: php

Section: 3

MSSQL_FREE_STATEMENT(3) 												   MSSQL_FREE_STATEMENT(3)

mssql_free_statement - Free statement memory

SYNOPSIS
bool mssql_free_statement (resource $stmt)
DESCRIPTION
mssql_free_statement(3) only needs to be called if you are worried about using too much memory while your script is running. All statement memory will automatically be freed when the script ends. You may call mssql_free_statement(3) with the statement identifier as an argument and the associated statement memory will be freed.
PARAMETERS
o $stmt - Statement resource, obtained with mssql_init(3).
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1 mssql_free_statement(3) example <?php // Create a new statement $stmt = mssql_init('test'); // Bind values here and execute the statement // once we're done, we clear it from the memory // using mssql_free_statement like so: mssql_free_statement($stmt); ?>
SEE ALSO
mssql_bind(3), mssql_execute(3), mssql_init(3), mssql_free_result(3). PHP Documentation Group MSSQL_FREE_STATEMENT(3)
Related Man Pages
sqlsrv_execute(3) - php
db2_stmt_error(3) - php
sqlsrv_free_stmt(3) - php
sqlsrv_has_rows(3) - php
sqlsrv_num_fields(3) - php
Similar Topics in the Unix Linux Community
Using a variable in sqlplus
wildcards with if statement?
Need to execute the same statement
error in if statement
Installed memory &#8800; usable size?