Я использую хранимую процедуру с RAISERROR. Ошибка, возникшая у SP, не перехватывается оператором try catch в c # .Net. Я использую SqlDataSource для соединения SQL и событие SqlDataSource_Updating для обновления данных.
Код SQL:
DECLARE @count int
@count=0
if(@count = 0)
begin
RAISERROR('Updation failed. record already exists', 16, 1)
end
c # Код:
protected void sqlDataSource_Updating(object sender, SqlDataSourceCommandEventArgs e)
{
try
{
// Assigns the update command parameter
e.Command.Parameters.Add(new SqlParameter("@fag", Flg));
e.Command.Parameters.Add(new SqlParameter("@Date", DateTime.Now));
}
//catch (SqlException ex)
//{
//}
catch (Exception ex)
{
// If so, checks the Exception message
if (ex.Message == "Updation failed. record Not exists")
{
// Display the details of the exception to the user
lblMessage.Text = " record already exists";
}
// Writes the error in log file
WriteErrorLog(ex.Message , "sqlDataSource_Updating");
}
}
SqlDataSource:
SelectCommand="SELECT [ID], [Name], [Flg] FROM [Master] ORDER BY Name "
InsertCommand="exec [Master_Insert] @ID, @Name, @Flg, @createdDate, @createdBy, @updatedDate, @updatedBy"
UpdateCommand="exec [Master_Update] @ID, @Name, @Flg, @updatedDate, @updatedBy"
DeleteCommand="DELETE FROM Master WHERE ID = @ID"
oninserted="sqlDataSource_Inserted"
oninserting="sqlDataSource_Inserting"
onupdated="sqlDataSource_Updated"
onupdating="sqlDataSource_Updating">
</asp:sqldatasource>
С уважением
Гита