...数据库时总是提示“至少有一个参数没有被指定值”,急求各位帮助_百度...
发布网友
发布时间:2024-10-02 05:01
我来回答
共2个回答
热心网友
时间:2024-11-06 03:23
这样改
for ( int i = 0; i < times; i++)
{
upDatasql = "update [" + comboBox3.Text + "] set [分段" + (i + 1) + "] = '" + dataGridView3.Rows[i].Cells[1].EditedFormattedValue + "' where [姓名] = '" + dataGridView1.Rows[cur].Cells[0].Value.ToString() + "' ";
}
for (int j = times + 1; j <= 20; j++)
{
upDatasql = "update [" + comboBox3.Text + "] set [分段" + j + "] = null where [姓名] = '" + dataGridView1.Rows[cur].Cells[0].Value.ToString() + "' ";
}
试一下
热心网友
时间:2024-11-06 03:23
不清楚你的上下文,最好设置个string变量来检测下待执行的sql语句