🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

mysql-with-kysely

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mysql-with-kysely

Use MySQL with kysely

0.0.2
Version published
Weekly downloads
7
-12.5%
Maintainers
1
Weekly downloads
 
Created

mysql-with-kysely

CI codecov

  • mysql-with-kysely use mysql2 and kysely
  • Handle MySQL BIGINT type as string
  • Incorrect arguments to mysqld_stmt_execute error safe!
    • Since MySQL 8.0.22, mysql2 driver has Incorrect arguments to mysqld_stmt_execute issue
    • LimitCasingPlugin resolves it

Installation

$ yarn add mysql-with-kysely

Usages

import { queryBuilder, WithSchema, SelectableSchema } from 'mysql-with-kysely'
import type { User } from './model'

// for query builder
type Database = {
  user: WithSchema<User>
}

// for your code
type Schema = SelectableSchema<Database>
type InsertValueSchema = InsertableSchema<Database>

const { db, close } = connect<Database>({ uri: 'mysql://root:root@localhost:3306/test' });

// collect your metrics
db.subscribe(({ sql, normalizedSql, durationMs, occurredAt, parameters }) => {
})

// your query builder
const qb = queryBuilder<Database>()

// write your codes type safely
// type of users is `Array<Schema['user']>`
const users = await db.query(qb
  .selectFrom('user')
  .selectAll()
  .orderBy('id', 'desc')
  .limit(1),
)

// type of value is `InsertValueSchema['user']`
const value = { name: 'kanziw', email: 'kanziwoong@gmail.com' }     
const { insertId } = await db.execute(qb
  .insertInto('user')
  .values(value),
)

// close MySQL connection
await close()

Database type

  • WithPkId: for auto increment id column
  • WithDataLifecycleTracker
    • created_at: for DATETIME DEFAULT CURRENT_TIMESTAMP
    • updated_at: for DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
  • WithSchema: WithPkId & WithDataLifecycleTracker

FAQs

Package last updated on 05 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts