mssql_select_db()
mssql_select_db - Select MS SQL database
Syntax
bool mssql_select_db (
string $database_name,
resource $link_identifier)
Arguments
- database_name
- link_identifier - A MS SQL link identifier, returned by mssql_connect() or mssql_pconnect(). If no link identifier is specified, the last opened link is assumed. If no link is open, the function will try to establish a link as if mssql_connect() was called, and use it.
Description
mssql_select_db() sets the current active database on the server that's associated with the specified link identifier.
Version
PHP 4, 5, PECL odbtp >= 1.1.1
Return value
Returns TRUE on success or FALSE on failure.