我正在尝试使用C#作为我选择的编程语言来了解ASP.NET 4.0。我是一名优秀的SQL开发人员,因此计划在SQL中完成大部分业务逻辑。应用程序只能通过存储过程与数据库进行交互。
在aspx页面中,我有一个数据源用于填充数据视图,该数据视图调用sp'季节_get_byID'和更新'season_update',后者需要多个参数,
aspx源显示
<asp:SqlDataSource ID="dsDetail" runat="server"
ConnectionString="<%$ ConnectionStrings:ADR %>"
SelectCommand="season_get_by_ID" SelectCommandType="StoredProcedure"
UpdateCommand="season_Update" UpdateCommandType="StoredProcedure">
<SelectParameters>
<asp:ControlParameter ControlID="GridView1" Name="ID"
PropertyName="SelectedValue" Type="Int32" />
</SelectParameters>
<UpdateParameters>
<asp:Parameter Name="ID" Type="Int32" />
<asp:Parameter Name="Code" Type="String" />
<asp:Parameter Name="Description" Type="String" />
<asp:Parameter DbType="Datetime" Name="StartDate" />
<asp:Parameter DbType="Datetime" Name="EndDate" />
<asp:Parameter Name="isActive" Type="Byte" />
<asp:Parameter Name="isCurrent" Type="Byte" />
</UpdateParameters>
</asp:SqlDataSource>
每个asp:参数映射到存储过程中的@Param参数 - 到目前为止一直很好
存储过程在尝试进行更新之前会进行一些验证。如果验证失败,则会引发RAISERROR(@ errmsg,10,1)。
我无法解决的是aspx.cs代码隐藏文件中的哪个位置我将尝试捕获错误以及语法应该是什么:它应该在after_update事件处理程序中,如果是这样,它似乎不会出现成为e.exception的一部分。我知道这个例程中的一些验证可以使用验证类来完成,但这是操纵环境而不是最终生产代码的学习练习,即我试图理解什么是可能的,而不是什么是“正确的”
存储过程的文本在下面。
ALTER Procedure [dbo].[season_Update]
(
@ID int,
@Code nvarchar(10),
@Description nvarchar(50),
@StartDate date,
@EndDate date,
@isActive tinyint,
@isCurrent tinyint
)
as
DECLARE @ERR nvarchar(max) = ''
IF (SELECT count(*) FROM season WHERE ID = @ID) = 0
BEGIN
SET @ERR = @ERR + '|Season Doesn''''t exist'
END
/*validate that season code and description are not blank*/
IF (@Code is null
or
ltrim(rtrim(@Code)) = ''
)
BEGIN
set @ERR =+ '|Season Code cannot be blank'
END
IF @ERR = ''
BEGIN
IF (@Description is null
or
ltrim(rtrim(@Description)) = ''
)
BEGIN
set @ERR =+ '|Season Description cannot be blank'
END
/*validate that the season code does not already exist on a different ID*/
IF (SELECT count(*) FROM season WHERE Code = ltrim(rtrim(upper(@CODE))) and
ID <> @ID) > 0
BEGIN
SET @ERR =+ '|Season Code ' + @Code + 'already exists'
END
/*validate that the start date is before the end date*/
IF @Startdate > @Enddate
BEGIN
SET @ERR =+ '|Start Date cannot be Before End Date'
END
END
IF @ERR = ''
BEGIN
BEGIN TRY
UPDATE Season
SET Code = ltrim(rtrim(upper(@Code))),
Description = Ltrim(rtrim(@Description)),
StartDate = @StartDate,
EndDate = @EndDate,
isActive = @isActive,
isCurrent = @isCurrent
WHERE
ID = @ID
END TRY
BEGIN CATCH
RAISERROR(N'There was a problem',10,1)
END CATCH
END
IF @ERR <> ''
BEGIN
RAISERROR(@ERR,10,1)
END
答案 0 :(得分:1)
微软有一篇关于此问题的文章How to Retrieve Values in SQL Server Stored Procedures,尽管在Visual Basic中。这应该可以让您了解如何解决问题。