summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSQL/Forward.h
diff options
context:
space:
mode:
authorJan de Visser <jan@de-visser.net>2021-06-17 14:12:46 -0400
committerAndreas Kling <kling@serenityos.org>2021-06-19 22:06:45 +0200
commit87bd69559fd5c63564fee853a5d93d4acc0023c8 (patch)
tree0940041ddbd930a6f6464eed3f32dea22a44f868 /Userland/Libraries/LibSQL/Forward.h
parent267eb3b329e730d38261128f06a0823f50a7567e (diff)
downloadserenity-87bd69559fd5c63564fee853a5d93d4acc0023c8.zip
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.
Diffstat (limited to 'Userland/Libraries/LibSQL/Forward.h')
-rw-r--r--Userland/Libraries/LibSQL/Forward.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibSQL/Forward.h b/Userland/Libraries/LibSQL/Forward.h
index 4d139afb8d..224404d189 100644
--- a/Userland/Libraries/LibSQL/Forward.h
+++ b/Userland/Libraries/LibSQL/Forward.h
@@ -25,6 +25,7 @@ class ColumnNameExpression;
class CommonTableExpression;
class CommonTableExpressionList;
class CreateTable;
+class Database;
class TupleDescriptor;
struct TupleElement;
class Delete;