Desktop UI updates

This commit is contained in:
ivan-pelly
2026-02-28 09:51:53 -08:00
parent b6b058f05e
commit 592c7324a1
39 changed files with 907 additions and 363 deletions
@@ -1,6 +1,8 @@
DELIMITER ;;
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Student_Delete`(IN p_id_student CHAR(36))
BEGIN
DELETE FROM user_student
WHERE id_student = p_id_student;
DELETE FROM student
WHERE id_student = p_id_student;
SELECT ROW_COUNT() AS rows_affected;