0

您好已经创建了一个程序,它读取表的最后一行并根据最后生成的 id 号生成一个 id 号,但程序仍在生成表中已经存在的重复 id 号。我的代码如下:follow

private void get_code()
        {
                try
                {
                    con = new OleDbConnection(c.connectionstring);
                    con.Open();
                    string sql = "select code from bookings";
                    adp = new OleDbDataAdapter(sql, con);
                    DataSet ds = new DataSet();
                    adp.Fill(ds, "BOOKINGS");
                    if (ds.Tables[0].Rows.Count > 0)
                    {
                        int ctr, len;
                        string codeval;
                        DataRow dr;
                        DataTable dt;
                        string code;
                        dt = ds.Tables["bookings"];
                        len = dt.Rows.Count -1;
                        dr = dt.Rows[len];
                        code = dr["code"].ToString();
                        codeval = code.Substring(2, 3);
                        ctr = Convert.ToInt32(codeval);
                        if ((ctr >= 1) && (ctr < 9))
                        {
                            ctr = ctr + 1;
                            Code.Text= "B-00" + ctr;
                        }
                        else if ((ctr >= 9) && (ctr < 99))
                        {
                            ctr = ctr + 1;
                            Code.Text = "B-0" + ctr;
                        }
                        else if (ctr >= 99)
                        {
                            ctr = ctr + 1;
                            Code.Text = "B-" + ctr;
                        }

                    }
                else
                {
                    Code.Text= "B-001";
                }
                con.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error Occured : "+ex.Message,"Tailor Master",MessageBoxButtons.OK,MessageBoxIcon.Information);
            }
    }

在下面的场景是这样的:如果最后一个 id 是 b-005 它将再次生成相同的。

请帮助解决问题。提前致谢。

哈里什夏尔马

4

1 回答 1

0

您没有order by在查询中指定子句,因此无法保证数据表的最后一行包含最高 id。在您的应用程序中生成 id 而不是在数据库中使用适当的自动增量字段也存在一般问题。

于 2013-03-30T14:04:23.500 回答