寻找一种简单的方法来检查表中是否已存在主键,然后再将其插入表中。其中 Fname 是表中的主键。
SqlConnection conn = new SqlConnection(connStr);
conn.Open();
SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandText = "INSERT INTO [table] ([firstName], [lastName]) VALUES ('" + txtFName.Text + "','" + txtLName.Text + "')";
cmd.ExecuteNonQuery();
conn.Close();