Skip to content

jagmeet787/StudentInformationSystem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

StudentInformationSystem

FullStackWeb Project using REST api implementation details

Front end (HTML + CSS + BootStrap + JavaScript + jQuery)
Back end (Java + Jersy + JDBC + MySQL)
Database Schema

create database studentproject;
use studentproject;

CREATE TABLE `student` ( `Name` varchar(100) NOT NULL, `DOB` date NOT NULL, `rollNumber` int NOT NULL, `physicsMarks` double DEFAULT NULL, `chemistryMarks` double DEFAULT NULL, `mathematicsMarks` double DEFAULT NULL, PRIMARY KEY (`rollNumber`), CHECK ( `rollNumber` > 0 ) );

About

FullStackWeb Project of Software System Part2

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published