Skip to content

zeroFruit/tsql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tsql

Tiny SQL engine inspired by "Let's Build a Simple Database" project. Data stores using B+ trees datastructure and persistents to file.

How to build

make build

With this one command, we can build tsql binary and you can find it in root path.

How to run

./tsql <filepath>

tsql saves data on file and persistent so you need to specify file path.

Tutorial

db > insert 1 user1 person1@example.com
Executed.
db > select
(1, user1, person1@example.com)

Releases

No releases published

Packages

No packages published