Enumerate all SQL Server Errors?

L

localhost

How can I enumerate all of the TSQL errors that come back from SQL
Server 2000? Are they listed electronically anywhere?

Thanks.
 
M

Mike Edenfield

localhost said:
How can I enumerate all of the TSQL errors that come back from SQL
Server 2000? Are they listed electronically anywhere?

catch the SqlException exception object and read it's Errors collection
-- a collection of SqlError objects.

--Mike
 
G

Guest

Hi,
I have a problem regarding the SQLException.Errors collection.

objCommand = new SqlCommand();
.................

1.
objCommand.ExecuteNonQuery();
//Throws an SQLException with Errors.count = 5

2.
objCommand.ExecuteReader();
//Throws an SQLException with Errors.count = 1

I need the 5 errors in both cases.
Why is the results different?

Regards,
/Daniel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top