DataLiteCore swift package

This commit is contained in:
2025-04-24 23:48:46 +03:00
parent b0e52a72b7
commit 6f955b2c43
70 changed files with 7939 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
-- This is a single-line comment.
CREATE TABLE users (
id INTEGER PRIMARY KEY,
username TEXT NOT NULL,
email TEXT NOT NULL
);
/*
This is a multi-line comment.
It spans multiple lines and can contain any text.
*/
INSERT INTO users (id, username, email)
VALUES
(1, 'john_doe', 'john@example.com'), -- Inserting John Doe
/* This is a comment inside a statement */
(2, 'jane_doe', 'jane@example.com'); -- Inserting Jane Doe