Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетил 16761 программист и 1774 робота. Сейчас ищут 2060 программистов ...
mssql_get_last_message - Returns the last message from the server
Вернуться к: Mssql Функции
mssql_get_last_message
(PHP 4, PHP 5, PECL odbtp >= 1.1.1)
mssql_get_last_message — Returns the last message from the server
Внимание
This function was REMOVED in PHP 7.0.0.
Alternatives to this function include:
Описание
string mssql_get_last_message
( void
)
Gets the last message from the MS-SQL server
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Returns last error message from server, or an empty string if no error messages are returned from MSSQL.
Примеры
Пример #1 mssql_get_last_message() example
<?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());
}
?>
Результатом выполнения данного примера будет что-то подобное:
MSSQL error: Invalid object name 'php.dbo.not-found'.
Смотрите также
- mssql_min_error_severity() - Sets the minimum error severity
- mssql_min_message_severity() - Sets the minimum message severity
Вернуться к: Mssql Функции