This commit is contained in:
Waylon S. Walker 2025-03-15 20:27:48 -05:00
commit 1fd8a68383
10 changed files with 1118 additions and 0 deletions

13
sqlite.sql Normal file
View file

@ -0,0 +1,13 @@
INSTALL httpfs;
LOAD httpfs;
SET s3_region='us-east-1';
SET s3_url_style='path';
SET s3_endpoint='minio.wayl.one';
SET s3_use_ssl = true;
-- Attach the SQLite database stored on S3
ATTACH 's3://try-litestream/db/database.db' AS sqlite_db (TYPE sqlite);
-- Verify the tables in the SQLite database
-- PRAGMA sqlite_db.table_list;