Skip to content

Campus Automation is a Java, GUI application which stores student records like Firstname, Lastname, Admissionnumber etc. It also stores student marks in four internal examintions. Details are stored in MySQL database

Notifications You must be signed in to change notification settings

captswag/campus-automation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Campus Automation

Campus Automation is a GUI based application, which can be used to store student records. It is entirely written using Java, database used is MySql. Student records include

  • Firstname
  • Lastname
  • Admission number
  • Mobile number
  • Sex
  • Branch
  • Sex
  • Date of Birth

Home

The application also provides option to save marks of students in four internal examinations.

Marks

Campus Automation uses JTable to represent student data in a tabular form. Editing and deleting of records is done directly from the table by selecting one row, and then pressing E or DEL on keyboard.

Delete

Database needed to be created manually. Database name is "campusautomation", username is "username" and password is "password".

Table student description

Field Type Null Key Default Extra
Firstname varchar(20) NO NULL
Lastname varchar(20) NO NULL
Admissionnumber int(4) NO PRI NULL
Mobile varchar(10) NO NULL
Sex varchar(7) NO NULL
Branch varchar(3) NO NULL
Sem int(1) NO NULL
dob date NO NULL

Table Marks1 description

Field Type Null Key Default Extra
k601 int(3) YES NULL
k602 int(3) YES NULL
k603 int(3) YES NULL
k604 int(3) YES NULL
k605 int(3) YES NULL
k606 int(3) YES NULL
k607 int(3) YES NULL
k608 int(3) YES NULL
Admissionnumber int(4) NO PRI NULL

Similar tables for Marks2, Marks3 & Marks4

About

Campus Automation is a Java, GUI application which stores student records like Firstname, Lastname, Admissionnumber etc. It also stores student marks in four internal examintions. Details are stored in MySQL database

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages