RAISERROR―How to distinguish with SqlException?

后端 未结 2 1160
被撕碎了的回忆
被撕碎了的回忆 2020-12-30 10:27

I have some 3-4 stored procedures ― which I can modify if needed ― that use RAISERROR to inform my application of some fatal errors on the database side. Some

2条回答
  •  独厮守ぢ
    2020-12-30 11:07

    When you catch a SqlException, you can inspect its Errors collections which contains the detailed error messages.

    Those SqlError objects contained very detailed information - including error code, message and so forth.

    Using that information, you should be able to easily distinguish between connection-based errors, or errors that your raise yourself.

提交回复
热议问题