Skip to content

database project for com2103 in Hang Seng University Of Hong Kong

Notifications You must be signed in to change notification settings

YuenSzeHong/com2103-database-project

Repository files navigation

com2103-database-project

database project for com2103 in Hang Seng University Of Hong Kong

database set up

create a database named lms in your selected DBMS (MySQL or MariaDB)

CREATE DATABASE lms;

then import the data dump included
file name should like this lms.datadump.dd.mm.yyyy.sql
latest lms.datadump.17.04.2022.sql

mysql -u lms -p lms < lms.datadump.17.04.2022.sql

create a user named lms with password lmsroot
then grant that account with permissions.

CREATE USER 'lms'@'localhost' IDENTIFIED BY 'lmsroot';
GRANT ALL PRIVILEGES ON lms . * TO 'lms'@'localhost';

About

database project for com2103 in Hang Seng University Of Hong Kong

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages