mysql插入max + 1错误

时间:2013-09-04 11:03:55

标签: c# mysql

我有一个包含数据网格的win表单,我向它添加行,我想在数据库中插入此行,但每行都有自己的ID,所以我写了这个查询并尝试这样做,但有错误特别是当尝试在每行中插入最大ID +1时,请帮我正确编写此查询。

这是我的问题:

for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
    OracleConnection CN = new OracleConnection(ConnectionString);
    string Query = 
           "insert into EMP_HASM_DET " +
           "(MAXID,EMPID,GHYAB,TAGMEE3,GZA) " +
           "  (SELECT 1 + coalesce((SELECT max(MAXID) FROM EMP_HASM_DET)), 1),'" + 
           this.dataGridView1.Rows[i].Cells[0].Value + "','" + 
           this.dataGridView1.Rows[i].Cells[1].Value + "','" + 
           this.dataGridView1.Rows[i].Cells[2].Value + "','" + 
           this.dataGridView1.Rows[i].Cells[3].Value + "'";
    OracleCommand cmd = new OracleCommand(Query, CN);
    CN.Open();
    cmd.ExecuteNonQuery();
    CN.Close();
}

1 个答案:

答案 0 :(得分:0)

一些想法......

  • 我在你的sql中没有看到VALUES子句,我认为这可能是问题的一部分。
  • 您将问题标记为MySQL,但您在代码示例中引用了Oracle连接......这是什么?
  • 您正在为每一行打开和关闭连接。这是很多开销,打开一次,发出命令,然后关闭它。

虽然与您的问题没有直接关系,但您可以考虑重新格式化代码以使用String.Format,如下所示。它使事情更容易阅读。特别是因为你不是经常附加单引号。像我一样在你的代码中放入一个Debug.WriteLine语句,让我们知道它输出的内容......这可能会让你的问题更加明显,并让我们更好地帮助你。

- 未经测试的代码如下 -

string sqlTemplate = "INSERT INTO EMP_HASM_DET(MAXID,EMPID,GHYAB,TAGMEE3,GZA) VALUES ({0}, '{1}', '{2}', '{3}', '{4}')";
string sqlSubquery = "(SELECT COALESCE(max(MAXID)+1, 1) FROM EMP_HASM_DET)";

OracleConnection CN = new OracleConnection(ConnectionString);
CN.Open();
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
  string Query = String.Format(sqlTemplate, 
        sqlSubquery,
        this.dataGridView1.Rows[i].Cells[0].Value,
        this.dataGridView1.Rows[i].Cells[1].Value,
        this.dataGridView1.Rows[i].Cells[2].Value,
        this.dataGridView1.Rows[i].Cells[3].Value);

  Debug.WriteLine(Query);

  OracleCommand cmd = new OracleCommand(Query, CN);
  cmd.ExecuteNonQuery();
}
CN.Close();