我在插入过程中遇到以下问题(多行):(插入了一些记录,在随机数量的记录之后我得到一个错误)!
sqlexec 进程接收到的语句 ID 无效。
public static int InsertGroupDetails(List<GroupDetails> grp_det)
{
using (IfxConnection con = new IfxConnection(ConfigurationSettings.AppSettings["str_rm"].ToString()))
{
int affectedRow = -1;
StringBuilder cmdTxt = new StringBuilder();
cmdTxt.Append(" INSERT INTO rdm_groupdetails(group_id,dep_code,dep_year,dep_name,boss_num,boss_name) VALUES (?, ?, ?, ?, ?, ? ) ");
foreach (GroupDetails grp in grp_det)
{
if (con.State == ConnectionState.Closed)
{
con.Open();
}
IfxCommand myIfxCmd = new IfxCommand(cmdTxt.ToString(), con);
myIfxCmd.CommandType = CommandType.Text;
myIfxCmd.Parameters.Clear();
myIfxCmd.Parameters.Add("group_id", grp.Group_id);
myIfxCmd.Parameters.Add("dep_code", grp.Dep_code);
myIfxCmd.Parameters.Add("dep_year", grp.Dep_year);
myIfxCmd.Parameters.Add("dep_name", grp.Dep_name);
myIfxCmd.Parameters.Add("boss_num", grp.Boss_code);
myIfxCmd.Parameters.Add("boss_name", grp.Boss_name);
affectedRow = myIfxCmd.ExecuteNonQuery();
}
con.Close();
con.Dispose();
return affectedRow;
}
}