interpolated-sql
TypeScript icon, indicating that this package has built-in type declarations

1.0.9 • Public • Published

Make SQL queries using JavaScript tagged literals for parameters.

Example

const id = 5
const user = await sql`select * from user where id = ${id}`

Best used with MySQL, where you can do

const id = await sql`
    insert into user
    set ${{ email: "my@domain.com", role: Role.ADMIN }}
`.insert()

Getting started

Get package

yarn install interpolated-sql

Create your own exec function, that will bind sql creation and connection handling

import {Sql} from "interpolated-sql"
import mysql from "mysql2/promise"

const connection = await mysql.createConnection({
  host: "localhost",
  user: "root",
  database: "test",
})

function exec(parts, ...params) {
  return new Sql(parts, params, () => connection)
}

async function getUsers() {
    return await exec`select * from users`.all()
}

API

see src/sql.ts

Readme

Keywords

none

Package Sidebar

Install

npm i interpolated-sql

Weekly Downloads

10

Version

1.0.9

License

MIT

Unpacked Size

24.5 kB

Total Files

13

Last publish

Collaborators

  • vasyas