Skip to content

izemaghilas/dbms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Description

Simple DataBase Management System, builded using JAVA.
The user interface, is a react web application, that interacts with the jakarta ee rest api,
to execute the user provided query.

Try it.

Data Types

  • int.
  • float.
  • stringL. L is the string length.

Query Language

  • CREATE
    create new relation in database
    Syntax: CREATE relation_name number_of_columns data_type_of_each_column
    Ex: CREATE employee 3 string45 string45 float
    
  • INSERT
    insert a record to a relation
    Syntax: INSERT relation_name value_of_each_column
    Ex: INSERT employee employee_first_name employee_last_name employee_salary
    
  • SELECTALL
    select all records of a relation
    Syntax: SELECTALL relation_name
    Ex: SELECTALL employee
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages