Skip to content

Instantly share code, notes, and snippets.

@thecodeboss
Created July 22, 2022 22:01
Show Gist options
  • Save thecodeboss/7713313afe7917d6bdf8bcdd96d4df1e to your computer and use it in GitHub Desktop.
Save thecodeboss/7713313afe7917d6bdf8bcdd96d4df1e to your computer and use it in GitHub Desktop.
Prisma/Slonik Usage Example
import { PrismaClient } from '@prisma/client';
import type { User } from '@prisma/client';
import { createPool, sql } from 'slonik';
export const buildBaseConnectionURL = (config) => {
return (
'postgresql://' +
config.DB_USER +
':' +
config.DB_PASS +
'@' +
config.DB_HOST +
':' +
config.DB_PORT +
'/' +
config.DB_NAME
);
};
export const buildPrismaDatabaseURL = (config) => {
return buildBaseConnectionURL(config) + '?schema=' + config.DB_SCHEMA;
};
export const buildSlonikConnectionURL = (config) => {
return buildBaseConnectionURL(config) + '?options=-csearch_path=%3d' + config.DB_SCHEMA;
}
// Prisma Client
const prisma = new PrismaClient({
datasources: { db: { url: buildPrismaDatabaseURL(config) } },
});
// Slonik Client
const db = createPool(buildSlonikConnectionURL(config));
// Example Prisma query:
const users = await prisma.user.findMany();
// Example Slonik query:
const users = await db.any<User>(sql`SELECT * FROM "User"`);
@nugmanoff
Copy link

Thanks for sharing!

@YerCodeWorld
Copy link

Looks cool. Will really inspire from this to do my own thing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment