mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:57:45 +00:00
LibSQL: Database layer
This patch implements the beginnings of a database API allowing for the creation of tables, inserting rows in those tables, and retrieving those rows.
This commit is contained in:
parent
267eb3b329
commit
87bd69559f
7 changed files with 511 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
set(SOURCES
|
||||
BTree.cpp
|
||||
BTreeIterator.cpp
|
||||
Database.cpp
|
||||
HashIndex.cpp
|
||||
Heap.cpp
|
||||
Index.cpp
|
||||
|
@ -8,6 +9,7 @@ set(SOURCES
|
|||
Lexer.cpp
|
||||
Meta.cpp
|
||||
Parser.cpp
|
||||
Row.cpp
|
||||
SyntaxHighlighter.cpp
|
||||
Token.cpp
|
||||
TreeNode.cpp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue