duckdb-playground/sqlite.sql
Waylon S. Walker 1fd8a68383 init
2025-03-15 20:27:48 -05:00

13 lines
332 B
SQL

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;