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:
Jan de Visser 2021-06-17 14:12:46 -04:00 committed by Andreas Kling
commit 87bd69559f
Notes: sideshowbarker 2024-07-18 12:00:34 +09:00
7 changed files with 511 additions and 0 deletions

View file

@ -25,6 +25,7 @@ class ColumnNameExpression;
class CommonTableExpression;
class CommonTableExpressionList;
class CreateTable;
class Database;
class TupleDescriptor;
struct TupleElement;
class Delete;