Skip to content

DusanCojic/SQL-like-engine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple SQL-like engine for executing queries

  • Java native library made in C++
  • GUI made using JavaFX framework

Features

  • Creating empty database
  • Import existing database
  • Export created database with tables to a custom format and SQL format
  • Creating table with given name and columns: CREATE TABLE Table(Column1,Column2)
  • Deleting table with a given name: DROP TABLE Table
  • Selecting data from a table with filters: SELECT Column1, Column2 FROM Table WHERE Column1>1 AND Column1<5
  • Inserting into a table: INSERT INTO Table(Colum1,Column2) VALUES (Value1,Value2),(Value2,Value4)
  • Deleting rows from a table: DELETE FROM Table WHERE Column1=Something
  • Updating rows in a table: UPDATE Table SET Column1=Something WHERE Column1=SomethingElse
DataForge.demo.mp4

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published