GridView 内の一部の更新および削除機能に SqlDataSource コントロールを使用しています。実行時エラーが発生し続ける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 で 6 つのパラメーターを確認できます。ここに私のストアドプロシージャがあります
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
どちらも 6 つのパラメーターを持ちます。それが違いを生む場合の適切な測定のための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
にデータベースに保存されるフィールドが 1 つあります。GetDate()
Test
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();
}
}
}
私が知らないこの不思議な余分なパラメータはどこから来ているのですか?