在 Microsoft Window 应用程序中,我在 app.config 文件中编写连接代码,当我在 winforms 中访问时,它给出了错误,请你帮帮我。
private void btnInsert_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["mycon"]);
cmd = new SqlCommand("USP_Insert_Students", con );
cmd.CommandType = CommandType.StoredProcedure;
con.Open();
cmd.Parameters.AddWithValue("@Stname", txtStname.Text);
cmd.Parameters.AddWithValue("@class", txtClass.Text);
cmd.Parameters.AddWithValue("@Section", txtSection.Text);
cmd.Parameters.AddWithValue("@Address", txtAddress.Text);
cmd.Parameters.AddWithValue("@states", cmdStates.SelectedText.ToString());
cmd.ExecuteNonQuery();
}