Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

odbc_close(3) [php man page]

ODBC_CLOSE(3)								 1							     ODBC_CLOSE(3)

odbc_close - Close an ODBC connection

SYNOPSIS
void odbc_close (resource $connection_id) DESCRIPTION
Closes down the connection to the database server. PARAMETERS
o $connection_id -The ODBC connection identifier, see odbc_connect(3) for details. RETURN VALUES
No value is returned. NOTES
Note This function will fail if there are open transactions on this connection. The connection will remain open in this case. PHP Documentation Group ODBC_CLOSE(3)

Check Out this Related Man Page

ODBC_PROCEDURECOLUMNS(3)						 1						  ODBC_PROCEDURECOLUMNS(3)

odbc_procedurecolumns - Retrieve information about parameters to procedures

SYNOPSIS
resource odbc_procedurecolumns (resource $connection_id) DESCRIPTION
resource odbc_procedurecolumns (resource $connection_id, string $qualifier, string $owner, string $proc, string $column) Retrieve information about parameters to procedures. PARAMETERS
o $connection_id -The ODBC connection identifier, see odbc_connect(3) for details. o $qualifier - The qualifier. o $owner - The owner. This parameter accepts the following search patterns: "%" to match zero or more characters, and "_" to match a single character. o $proc - The proc. This parameter accepts the following search patterns: "%" to match zero or more characters, and "_" to match a single character. o $column - The column. This parameter accepts the following search patterns: "%" to match zero or more characters, and "_" to match a sin- gle character. RETURN VALUES
Returns the list of input and output parameters, as well as the columns that make up the result set for the specified procedures. Returns an ODBC result identifier or FALSE on failure. The result set has the following columns: oPROCEDURE_QUALIFIER oPROCEDURE_OWNER oPROCEDURE_NAME oCOLUMN_NAME oCOLUMN_TYPE oDATA_TYPE oTYPE_NAME oPRECISION oLENGTH oSCALE oRADIX oNULLABLE oREMARKS The result set is ordered by PROCEDURE_QUALIFIER, PROCEDURE_OWNER, PROCEDURE_NAME and COLUMN_TYPE. PHP Documentation Group ODBC_PROCEDURECOLUMNS(3)
Man Page