(PHP 4, PHP 5, PECL odbtp >= 1.1.1)
Returns the last message from the server
string mssql_get_last_message ( void )
Gets the last message from the MS-SQL server
Returns:
Returns last error message from server, or an empty string if no error messages are returned from MSSQL.
Examples:
mssql_get_last_message() example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?php // Connect to MSSQL and select the database mssql_connect( 'KALLESPC\SQLEXPRESS' , 'sa' , 'phpfi' ); mssql_select_db( 'php' ); // Make a query that will fail $query = @mssql_query( 'SELECT * FROM [php].[dbo].[not-found]' ); if (! $query ) { // The query has failed, print a nice error message // using mssql_get_last_message() die ( 'MSSQL error: ' . mssql_get_last_message()); } ?> |
The above example will output something similar to:
MSSQL error: Invalid object name 'php.dbo.not-found'.
See also:
Please login to continue.