Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Description of MS SQL error messages

Author  Topic 

harleen
Starting Member

2 Posts

Posted - 2005-12-07 : 07:22:47
How can I get description (not number which @@ERROR give)of MS SQL Error Messages in PHP.
Like we can get for MySQL using mysql_error, is there any alternative for the same?

chiragkhabaria
Master Smack Fu Yak Hacker

1907 Posts

Posted - 2005-12-07 : 07:42:38
aha.. you need to look for that in the sysmessages table..

Select * From Master..Sysmessages Where Error = @@Error

Hope this work for u

Sucess Comes to those who Believe in Beauty of their Dream..
Go to Top of Page
   

- Advertisement -