Exemplo n.º 1
0
        public void delInUsers(int id, Trans t)
        {
            string sql = "delete from users where id=" + id;

            TeacherFunctionForm.executeDel(sql, t);
        }
Exemplo n.º 2
0
        public void delInStu_answers(int id, Trans t)
        {
            string sql = "delete from stu_answers where studentId=" + id;

            TeacherFunctionForm.executeDel(sql, t);
        }