php man page for mssql_free_statement

Query: mssql_free_statement

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

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
mssql_free_result(3) - php
mssql_bind(3) - php
mssql_init(3) - php
sqlsrv_cancel(3) - php
sqlsrv_free_stmt(3) - php
Similar Topics in the Unix Linux Community
Using a variable in sqlplus
Installed memory &#8800; usable size?
Case statement w/count
Minues four hours from time
If statement is not working in KSH