我想创建一个用于值预检的程序。用户将向UI提供单个输入(wbslement no)。我想将该记录插入到System中。在插入数据库之前我想检查它是否存在于表中。如果它存在于表中那么它不应该将记录插入到表中,如果它不存在于数据库中那么它应该插入。
目前正在加载时,我正在尝试插入系统,从表中获取所有记录。
在我的代码中,无论如何都插入值
CrCon = new SqlConnection(spcallloggin);
CrCon.Open();
CrCmd = new SqlCommand();
CrCmd.Connection = CrCon;
CrCmd.CommandText = "GetOraderNumberDetail";
CrCmd.CommandType = CommandType.StoredProcedure;
sqladpter = new SqlDataAdapter(CrCmd);
ds = new DataSet();
sqladpter.Fill(ds);
for (int count = 0; count < ds.Tables[0].Rows.Count; count++)
{
if (txtwbs.Text == ds.Tables[0].Rows[count][0].ToString())
{
Lbmsg.Visible = true;
Lbmsg.Text = "Data Already Exists !";
count = count + 1;
}
else
{
insetreco(val);
}
}
答案 0 :(得分:0)
最好直接在存储过程中进行检查。
IF NOT EXISTS(SELECT * FROM [TABLE] WHERE unique_field = "value of the txtwbs")
BEGIN
INSERT INTO [TABLE]
VALUES (value1, value2, value3,...)
END
您也可以按以下方式更改代码:
bool doesExist;
for (int count = 0; count < ds.Tables[0].Rows.Count; count++)
{
if (txtwbs.Text == ds.Tables[0].Rows[count][0].ToString())
{
Lbmsg.Visible = true;
Lbmsg.Text = "Data Already Exists !";
doesExist = true;
break;
}
}
if(!doesExist)
insetreco(val);
答案 1 :(得分:0)
您可以使用DataView's RowFilter查询内存表:
Dataview dv = ds.Tables[0].DefaultView ;
dv.RowFilter="wbslement_no="+number;
if(dv.ToTable().Rows.Count==0)
{
//insert into database
}
else
{
Lbmsg.Visible = true;
Lbmsg.Text = "Data Already Exists !";
}
或
您可以检查存储过程中的双重性,而不是对数据库进行两次单独调用。
答案 2 :(得分:0)
只需对表本身进行“唯一”键约束即可。 MySQL已经有一个现有的构造来处理这个问题,所以你的代码没有意义。
答案 3 :(得分:0)
检查一下:
根据您的需要进行更改
IF EXISTS (SELECT 1 FROM targetTable AS t
WHERE t.empNo = @yourEmpNo
AND t.project = @yourProject)
BEGIN
--what ever you want to do here
END
ELSE
BEGIN
INSERT INTO yourTable (empno, name, project)
SELECT @empno, @name, @project
END