Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 1.11 KB

README.md

File metadata and controls

18 lines (14 loc) · 1.11 KB

StudentsManagement

A student management application that will allow the school to track information on students, their information on students and their enrollment in the various courses of study.

Technologies used:

Spring, STRUTS 2 with Annotation , Hibernate, JSP, Bootstrap.

Database script:

Create Table 'school'.'filieres' ('Code_Fil' VARCHAR(20) NOT NULL, 'Nom_Fil' VARCHAR(45) NULL, PRIMARY KEY ('Code_Fil')); Create Table 'school'.'eleves' ( 'cne' VARCHAR(20) NOT NULL, 'nom' VARCHAR(45) NULL,'prenom' VARCHAR(45) NULL,'moyenne' DOUBLE NULL, 'Ref_Fil' VARCHAR(20) NULL,PRIMARY KEY('cne'), INDEX 'Ref_Fil_idx' ('Ref_Fil' ASC), Constraint 'Ref_Fil' Foreign Key ('Ref_Fil') References 'school'.'filieres'('Code_Fil'));

Capture d’écran (577) Capture d’écran (578) Capture d’écran (579)

...