nikitashrestha / EADD

This is project on EADD for student information system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StudentInformation

Project Members

  • 072BCT522 - Nikita Shrestha
  • 072BCT514 - Jeevan Thapa
  • 072BCT537 - Shristi Shrestha
  • 072BCT535 - Shishir Bhandari

Built on

  • Eclipse 2019-03 (4.11.0)
  • JDK 1.8

Login Credentials

  • username: admin, password: admin

Starting Page

Setup MySQL database:

create database eadd_db;
create user 'eadd_user'@'localhost' identified by 'ThePassword';
grant all on eadd_db.* to 'eadd_user'@'localhost';

Create tables:

create the Users table

create table Users( 
uid int(20) not null auto_increment, 
uname varchar(60) not null, 
password varchar(60) not null, 
primary key(uid));

insert the admin into Users

insert into Users(uname, password) values('admin', 'admin');

create the student table

create table student(
sid int(20) not null auto_increment,
first_name varchar(60) not null,
last_name varchar(60) not null,
email varchar(60) not null,
roll_no varchar(10) not null, 
primary key (sid));

create the address table

create table address(
aid int(20) not null auto_increment,
province int not null,
district varchar(60) not null, 
ward_no int not null, 
local_level varchar(120) not null, 
student_id int(20), 
primary key (aid),
foreign key (student_id)
references student(sid)
on delete cascade
on update cascade);

About

This is project on EADD for student information system


Languages

Language:Java 89.4%Language:HTML 10.1%Language:CSS 0.6%