msql_drop_db
(PHP 3, PHP 4 )
msql_drop_db -- Drop (delete) mSQL database
Description
int msql_drop_db ( string database_name [, resource link_identifier])
Returns TRUE on success or FALSE on failure.
msql_drop_db() attempts to drop (remove) an entire database
from the server associated with the specified link identifier.
See also: msql_create_db().
msql_error
(PHP 3, PHP 4 )
msql_error -- Returns error message of last msql call
Description
string msql_error ( [resource link_identifier])
msql_error() returns the last issued error by the mSQL server
or an empty string if no error was issued. If no link is
explicitly passed, the last successful open link will be
used to retrieve the error message. Note that only the last
error message is accessible with msql_error().
|