Created
          July 22, 2022 22:01 
        
      - 
      
 - 
        
Save thecodeboss/7713313afe7917d6bdf8bcdd96d4df1e to your computer and use it in GitHub Desktop.  
    Prisma/Slonik Usage Example
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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"`); | 
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
  
            
Thanks for sharing!