ksallberg / sql

A little practice in C data structures. Create a simple in-memory SQL database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dependencies

lex, yacc, gcc

(libbison-dev needed)

compiling

make all

run

./db init_files/simple_two_col.txt

SELECT * FROM apa;

| name | weight |
| "gorilla" | 400 |
| "gibbon" | 5 |

help found in the following places:

credits

SQL Parser

not created by me, found it here and just modified it slightly

https://github.com/ronakgadia/SQL-Parser

About

A little practice in C data structures. Create a simple in-memory SQL database


Languages

Language:Yacc 55.2%Language:C 36.8%Language:Lex 6.6%Language:Python 0.8%Language:Makefile 0.7%