30/09/2018, 18:47
Cách lấy thông báo lỗi ở dưới CSDL đưa lên form C#?
Chào mọi người!
Mình tạo 1 transaction ở dưới CSDL và có đặt trong try catch để lấy thông báo lỗi. Và bây giờ mình muốn lấy thông báo lỗi này để đưa lên form c# thì phải làm thế nào?
Ai có hướng giải quyết này không nhỉ?
Cảm ơn mọi người!
Bài liên quan
bạn sử dụng RAISERROR trong SQL Server thử xem sao
Catch a Sql Server RAISERROR at client side using SqlDataReader.
The other day I had a question on using RAISERROR in SQL Server and that it was not propagated down to the client. In other words, something went wrong in, for example a stored procedure, a RAISERROR was created but this was not seen on the client....
SqlException not getting sent back to my C# code
I have a straight forward SP that throws a divide by zero error like: This exception gets returned to the code fine until I add a try catch to the SP like: BEGIN TRY SELECT 1/0 END TRY BEGIN CATCH...