GitHub - frectonz/pglite-fusion: Embed an SQLite database in your PostgreSQL table. AKA multitenancy has been solved.
pglite-fusion
Embed an SQLite database in your PostgreSQL table. AKA multitenancy has been solved.
Usage
Run a PostgreSQL database that has pglite-fusion already installed.
docker run --network=host frectonz/pglite-fusion
Connect to the PostgreSQL database using psql.
psql postgresql://postgres@localhost:5432/
Here's some demo usage.
-- Load PG extension
CREATE EXTENSION pglite_fusion;
-- Create a table with an SQLite column
CREATE TABLE people (
name TEXT NOT NULL,
database SQLITE DEFAULT e...
Read more at github.com