本文介绍了你调用的对象是空的。 C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我创建表: -
car_id:-int
忙: - 位
伤害: - 位
withoutDriver: - 位
Move_id: - int FK
fromDate: - date
i create table :-
car_id :-int
busy :- bit
damage :- bit
withoutDriver :- bit
Move_id :- int FK
fromDate :- date
foreach (DataGridViewRow item in dataGridView1.Rows)
{
s = "insert into Move_Transfer (Car_id,busy,damage,withoutDriver,Move_id,fromDate)";
s = s + "values (@Car_id,@busy,@damage,@withoutDriver,@Move_id,@fromDate)";
sCommand = new SqlCommand(s, con);
sCommand.Parameters.AddWithValue("@Car_id", item.Cells[1].Value.ToString());
sCommand.Parameters.AddWithValue("@busy", item.Cells[2].Value.ToString());
sCommand.Parameters.AddWithValue("@damage",item.Cells[3].Value.ToString());
sCommand.Parameters.AddWithValue("@withoutDriver", item.Cells[4].Value.ToString());
sCommand.Parameters.AddWithValue("@Move_id", item.Cells[5].Value.ToString());
sCommand.Parameters.AddWithValue("@fromDate", dateTimePicker_form.Text);
sCommand.ExecuteNonQuery();
}
我的尝试:
我如何解决这个问题,谢谢
What I have tried:
how i solve this problem please and thanks
推荐答案
这篇关于你调用的对象是空的。 C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!