存储过程包含太多参数

时间:2013-07-25 17:11:08

标签: c# asp.net sql gridview stored-procedures


  

Posibale Duplicate Getting 'too many parameters passed' to stored procedure on ASPX page


我正在使用SqlDataSource控件在GridView中进行一些更新和删除功能。我一直收到运行时错误Procedure or function spUpdateTest has too many arguments specified.当我在SQL Server中运行存储过程时,它工作正常。当我点击GridView的删除部分时,这是有效的。但是,当我尝试更新时,我得到了上述错误。

 <asp:SqlDataSource ID="SqlDataSource1" runat="server" 
            ConnectionString="<%$ ConnectionStrings:dbcsDrugCards %>" 
            DeleteCommand="spDeleteTest" DeleteCommandType="StoredProcedure" 
            InsertCommand="spInsertTest" InsertCommandType="StoredProcedure" 
            SelectCommand="spGetAllTest" SelectCommandType="StoredProcedure" 
            UpdateCommand="spUpdateTest" UpdateCommandType="StoredProcedure">
            <DeleteParameters>
                <asp:Parameter Name="PatientId" Type="Int32" />
            </DeleteParameters>
            <InsertParameters>
                <asp:Parameter Name="PatientId" Type="Int32" />
                <asp:Parameter Name="RaceId" Type="Int32" />
                <asp:Parameter Name="CountyId" Type="Int32" />
                <asp:Parameter Name="Gender" Type="String" />
                <asp:Parameter Name="DateOfBirth" Type="DateTime" />
                <asp:Parameter Name="SesId" Type="Int32" />
            </InsertParameters>
            <UpdateParameters>
                <asp:Parameter Name="PatientId" Type="Int32" />
                <asp:Parameter Name="RaceId" Type="Int32" />
                <asp:Parameter Name="CountyId" Type="Int32" />
                <asp:Parameter Name="Gender" Type="String" />
                <asp:Parameter Name="DateOfBirth" Type="DateTime" />
                <asp:Parameter Name="SesId" Type="Int32" />
            </UpdateParameters>
        </asp:SqlDataSource>

您可以在SqlDataSource中看到六个参数。现在这是我的存储过程

create proc spUpdateTest  
 @PatientId int  
,@RaceId int  
,@CountyId int  
,@Gender varchar(50)  
,@DateOfBirth date  
,@SesId int  
as  
begin  
update t  
set  t.raceid = @RaceId  
 ,t.countyId = @CountyId  
 ,t.gender = @Gender  
 ,t.DateOfBirth = @DateOfBirth  
 ,t.SocioEconomicStatusId = @SesId  
from test as t  
where t.patientId = @PatientId  
end  

都有六个参数。 GridView可以很好地衡量它是否有所作为

   <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 
            CellPadding="4" DataKeyNames="patientId" DataSourceID="SqlDataSource1" 
            ForeColor="#333333" GridLines="None">
            <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
            <Columns>
                <asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
                <asp:BoundField DataField="patientId" HeaderText="patientId" ReadOnly="True" 
                    SortExpression="patientId" />
                <asp:BoundField DataField="RaceId" HeaderText="RaceId" 
                    SortExpression="RaceId" />
                <asp:BoundField DataField="CountyId" HeaderText="CountyId" 
                    SortExpression="CountyId" />
                <asp:BoundField DataField="Gender" HeaderText="Gender" 
                    SortExpression="Gender" />
                <asp:BoundField DataField="DateOfBirth" HeaderText="DateOfBirth" 
                    SortExpression="DateOfBirth" />
                <asp:BoundField DataField="SocioEconomicStatusId" 
                    HeaderText="SocioEconomicStatusId" SortExpression="SocioEconomicStatusId" />
                <asp:BoundField DataField="DateEnrolled" HeaderText="DateEnrolled"  ReadOnly="true"
                    SortExpression="DateEnrolled" />
            </Columns>
            <EditRowStyle BackColor="#999999" />
            <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
            <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
            <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
            <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
            <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
            <SortedAscendingCellStyle BackColor="#E9E7E2" />
            <SortedAscendingHeaderStyle BackColor="#506C8C" />
            <SortedDescendingCellStyle BackColor="#FFFDF8" />
            <SortedDescendingHeaderStyle BackColor="#6F8DAE" />
        </asp:GridView>

我不知道它是否意味着什么,但我确实有一个字段DateEnrolled,它不是由用户编辑的,每当GetDate() Test时都会保存到数据库中{1}}对象被添加到数据库中。

C#

public static void UpdateTest(int PatientId, int raceID, int countyId, string gender
            , DateTime dateOfBirth, int sesId)
        {
            using (SqlConnection con = new SqlConnection(TestDataAccessLayer.ConnectionString))
            {
                using (SqlCommand cmd = new SqlCommand("spUpdateTest", con))
                {
                    con.Open();
                    cmd.CommandType = CommandType.StoredProcedure;
                    cmd.Parameters.AddWithValue("@RaceDescription", raceID);
                    cmd.Parameters.AddWithValue("@CountyName", countyId);
                    cmd.Parameters.AddWithValue("@Gender", gender);
                    cmd.Parameters.AddWithValue("@DateOfBirth", dateOfBirth);
                    cmd.Parameters.AddWithValue("@SesDescription", sesId);
                    cmd.Parameters.AddWithValue("@PatientId", PatientId);
                    cmd.ExecuteNonQuery();
                }
            }
        }

这是有效的

public static void DeleteTest(int PatientId)
        {
            using (SqlConnection con = new SqlConnection(TestDataAccessLayer.ConnectionString))
            {
                using (SqlCommand cmd = new SqlCommand("spDeleteTest", con))
                {
                    con.Open();
                    cmd.CommandType = CommandType.StoredProcedure;
                    cmd.Parameters.AddWithValue("@PatientId", PatientId);
                    cmd.ExecuteNonQuery();
                }
            }
        }

这个神秘的额外参数来自我不知道的地方?

1 个答案:

答案 0 :(得分:2)

C#代码中的参数名称与存储过程中定义的参数名称不匹配。

以下是与存储过程中的名称不匹配的名称:

  • @RaceId - C#代码中的@RaceDescription
  • @CountyId - C#代码中的@CountryName
  • @SesId - C#代码中的@SesDescription

我的猜测,在没有看到代码的情况下,对于你的删除存储过程,@PatientId参数在两侧都匹配(C#和存储过程),这就是为什么那个工作,而更新没有。< / p>