我必须使用面部检测在数据库中添加多个出勤率。
我已经尝试了很多,但仍然无法做到这一点,因为我在单个单元格中添加了多次出席,但我需要在一个单元格中添加每个出席。
有人可以通过使用for循环来帮助我吗?
{
conn.open();
SqlCommand cmd = new SqlCommand("InsertAttendance", conn);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("@AttendanceID", SqlDbType.BigInt).Value = textAttendanceID.Text;
cmd.Parameters.Add("@StudentRollNo", SqlDbType.VarChar).Value = textname.Text;
cmd.Parameters.Add("@Date", SqlDbType.DateTime).Value = dateTimePicker1.Value;
cmd.Parameters.Add("@Status", SqlDbType.VarChar).Value = textStatus.Text;
cmd.ExecuteNonQuery();
cmd.Dispose();
conn.Close();
MessageBox.Show("Attendance Inserted Successfully...");
}