【发布时间】:2019-05-03 16:02:11
【问题描述】:
我是 C# 新手。我的问题是我想将 ean、描述、bookcode、价格和折扣插入到 SQL Server 中,其数量来自第 7 列及以上:
我当前的代码能够插入数据,但数量已经定义。我正在考虑进行循环,但出现错误
必须声明标量变量
我不确定我的逻辑是否正确。
这是我的 SQL Server 表的屏幕截图:
我的代码:
private void button3_Click(object sender, EventArgs e)
{
using (SqlConnection conn = new SqlConnection(";Trusted_Connection=False"))
using (SqlCommand comm = new SqlCommand())
{
comm.Connection = conn;
conn.Open();
for (int i = 1; i < dataGridView2.Rows.Count; i++)
{
comm.CommandText = "INSERT INTO SOLine (CustID,Bookcode,Barcode,Description,Price,Disc,Qty) VALUES ('2058 KBC',@bookcode,@barcode,@desc,@price,@disc,@qty)";
SqlParameter bookcode = comm.Parameters.AddWithValue("@bookcode", dataGridView2.Rows[i].Cells["BOOKCODE"].Value);
SqlParameter barcode = comm.Parameters.AddWithValue("@barcode", dataGridView2.Rows[i].Cells["3"].Value);
SqlParameter desc = comm.Parameters.AddWithValue("@desc", dataGridView2.Rows[i].Cells["4"].Value);
SqlParameter price = comm.Parameters.AddWithValue("@price", dataGridView2.Rows[i].Cells["5"].Value);
SqlParameter disc = comm.Parameters.AddWithValue("@disc", dataGridView2.Rows[i].Cells["6"].Value);
//SqlParameter qty = comm.Parameters.AddWithValue("@qty", dataGridView2.Rows[i].Cells["7"].Value);
if (dataGridView2.Rows[i].Cells["BOOKCODE"].Value == null)
{
bookcode.Value = DBNull.Value;
}
if (dataGridView2.Rows[i].Cells["3"].Value == null)
{
barcode.Value = DBNull.Value;
}
if (dataGridView2.Rows[i].Cells["4"].Value == null)
{
desc.Value = DBNull.Value;
}
if (dataGridView2.Rows[i].Cells["5"].Value == null)
{
price.Value = DBNull.Value;
}
if (dataGridView2.Rows[i].Cells["6"].Value == null)
{
disc.Value = DBNull.Value;
}
// if (dataGridView2.Rows[i].Cells["7"].Value == null)
// {
// qty.Value = DBNull.Value;
// }
for (int q = 7; q <= dataGridView2.Columns.Count; q++) //dataGridView2.Columns.Count
{
int w = 1;
w++;
comm.Parameters.Add("@qty", SqlDbType.Int).Value = dataGridView2.Rows[w].Cells[q].Value;
comm.Parameters.Clear();
}
comm.ExecuteNonQuery();
comm.Parameters.Clear();
}
MessageBox.Show("Save SQL");
//try
//{
// comm.ExecuteNonQuery();
//}
//catch (Exception ex)
//{
// MessageBox.Show(ex.ToString());
//}
}
}
【问题讨论】:
标签: c# sql-server