1.0.9 • Published 2 years ago

interpolated-sql v1.0.9

Weekly downloads
1
License
MIT
Repository
github
Last release
2 years ago

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

1.0.9

2 years ago

1.0.8

3 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago