GitHub - shaowei1/db_tutorial: Writing a sqlite clone from scratch in C

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Repository files navigation

Let's Build a Simple Database

View rendered tutorial (with more details on what this is.)

Notes to myself

Run site locally:

bundle exec jekyll serve

flowchart

@startuml
start
:input sql;
:parse sql;
switch(type)
    case(ddl)
        :execute ddl;
        stop
    case(dml)
        :execute dml;
        :prepare statement;
        :execute statement;
        :cursor open;
        :table open;
        :page open;
        :disk read;
        :output result;
endswitch
end
@enduml

commands

# go test ./...
# cd gov && go test -v

About

Writing a sqlite clone from scratch in C

Resources

Readme

License

MIT license

Activity

Stars

0 stars

Watchers

0 watching

Forks

0 forks

Releases

No releases published

Languages

  • C 65.1%
  • Go 16.6%
  • Ruby 12.9%
  • HTML 4.8%
  • Other 0.6%