Skip to content

hmarui66/simpledb

Repository files navigation

simpledb

A toy RDBMS implemented in Java. Based on SimpleDB of "Database Design and Implementation". Original code of SimpleDB is here.

how it works

run SimpleIJ.java

Connect >
test

SQL> create table T1(A int, B varchar(9));
SQL> insert into T1(A, B) values (1, 'b value');
SQL> insert into T1(A, B) values (2, 'b value 2');
SQL> select A, B from T1 where A = 1;
      a         b
-----------------
      1   b value

working on

notes

  • JDK 17 で動作(するはず)
  • warning 大量なので直したい

link

About

A toy RDBMS implemented in Java.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published