update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns the last message from the server

mssql_get_last_message

(PHP 4, PHP 5, PECL odbtp >= 1.1.1)

mssql_get_last_messageReturns the last message from the server

설명

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.

예제

Example #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'.

참고