bağlanti.Open();
SqlCommand komut = new SqlCommand("insert into RezervasyonKayıt (Rezervasyon_İçerik,Yemek_Tercihi,Kişi_Sayısı,İçecek_Tercihi,Giris_Ekstraları,Yetkili_Kisi,Rezervasyon_Tarihi)values(@İçerik,@Yemek,@Kisi,@İcecek,@Giris,@Yetkili,@RezTarih)", bağlanti);
komut.Parameters.AddWithValue("@İçerik", comboBox1.SelectedItem);
komut.Parameters.AddWithValue("@Yemek", comboBox2.SelectedItem);
komut.Parameters.AddWithValue("@Kisi", comboBox3.SelectedItem);
komut.Parameters.AddWithValue("@İcecek", comboBox4.SelectedItem);
komut.Parameters.AddWithValue("@Giris", comboBox5.SelectedItem);
komut.Parameters.AddWithValue("@Yetkili", comboBox6.SelectedItem);
komut.Parameters.AddWithValue("@RezTarih", dateTimePicker1.Value);
komut.ExecuteNonQuery();
comboBox1.Text = "";
comboBox2.Text = "";
comboBox3.Text = "";
comboBox4.Text = "";
comboBox5.Text = "";
comboBox6.Text = "";
bağlanti.Close();
XtraMessageBox.Show("Randevu Başarıyla Kayıt Edilmiştir", "Bilgi Mesajı", MessageBoxButtons.OK, MessageBoxIcon.Information);
我试图仅检查Rezervasyon_Tarihi是否存在于数据库中我将显示给MessageBox(“此日期已经存在Rezervasyon!”;
string cmd = @“SELECT COUNT(*)来自RezervasyonKayıtWHERERezervasyon_Tarihi = @ RezTarih))”;
komut=new SqlCommand(cmd,bağlanti);
komut.Parameters.AddWithValue("@RezTarih",dateTimePicker1.Value);
bağlanti.Open();
int records=(int)komut.ExecuteScalar();
if (records==0)
{
komut.Parameters.Clear();
cmd=@"insert into RezervasyonKayıt (Rezervasyon_İçerik,Yemek_Tercihi,Kişi_Sayısı,İçecek_Tercihi,Giris_Ekstraları,Yetkili_Kisi,Rezervasyon_Tarihi)values(@İçerik,@Yemek,@Kisi,@İcecek,@Giris,@Yetkili,@RezTarih)";
komut=new SqlCommand(cmd,bağlanti);
komut.Parameters.AddWithValue("@İçerik", comboBox1.SelectedItem);
komut.Parameters.AddWithValue("@Yemek", comboBox2.SelectedItem);
komut.Parameters.AddWithValue("@Kisi", comboBox3.SelectedItem);
komut.Parameters.AddWithValue("@İcecek", comboBox4.SelectedItem);
komut.Parameters.AddWithValue("@Giris", comboBox5.SelectedItem);
komut.Parameters.AddWithValue("@Yetkili", comboBox6.SelectedItem);
komut.Parameters.AddWithValue("@RezTarih", dateTimePicker1.Value);
komut.ExecuteNonQuery();
comboBox1.Text = "";
comboBox2.Text = "";
comboBox3.Text = "";
comboBox4.Text = "";
comboBox5.Text = "";
comboBox6.Text = "";
XtraMessageBox.Show("Randevu Başarıyla Kayıt Edilmiştir", "Bilgi Mesajı", MessageBoxButtons.OK, MessageBoxIcon.Information);
}else
{
Response.Write("Records Exists");
}
答案 0 :(得分:1)
您可以在选择请求之前插入,以查看您要插入的条目是否已存在。
答案 1 :(得分:1)
你可以采取两种方式
首先是在插入之前进行选择,例如
{{1}}
请注意,此
可能会发生竞争条件建议的方法是在ID上定义唯一键,并且由于重复的唯一键异常,插入将失败。捕获该异常并显示一个msgbox
答案 2 :(得分:1)
在尝试插入新行之前,您可以检查特定键/记录的存在。 例如。您可以预先执行“SELECT count(*)”类型的语句,以查看已存在具有相同值的记录。如果此计数大于零,则显示错误消息。
请记住,在高度事务性系统中,在您运行检查的那一刻和尝试插入新记录的时刻(几毫秒之后)之间可能会插入一条新记录。因此,您可能希望将2个语句包装到1个事务中,或者能够在代码中处理这种情况。
您还可以考虑添加UNIQUE约束,以保证表中只能存在1种此类记录。 更多信息:Violation of UNIQUE KEY constraint on INSERT WHERE COUNT(*) = 0 on SQL Server 2005