在id中生成重复的id自动生成c#中的代码?

时间:2013-03-30 10:58:17

标签: c# ms-access

您已创建了一个程序,该程序读取表的最后一行并根据最后生成的ID号生成一个ID号,但程序仍在生成表中已有的重复ID号。  我的代码如下:关注

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,它将再次生成相同的内容。

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

Harish sharma

1 个答案:

答案 0 :(得分:0)

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