Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno_nest/modules/mysql/deps.ts>Client

Refer to nestjs to realize some common functions for Deno, support hono and oak
Go to Latest
class Client
import { Client } from "https://deno.land/x/deno_nest@v3.5.2/modules/mysql/deps.ts";

MySQL client

Properties

private
optional
_pool: ConnectionPool
config: ClientConfig
readonly
pool

get pool info

Methods

private
createConnection(): Promise<PoolConnection>

close connection

connect(config: ClientConfig): Promise<Client>

connect to database

execute(sql: string, params?: any[]): Promise<ExecuteResult>

execute sql

query(sql: string, params?: any[]): Promise<any>

execute query sql

transaction<T = any>(processor: TransactionProcessor<T>): Promise<T>

Execute a transaction process, and the transaction successfully returns the return value of the transaction process

useConnection<T>(fn: (conn: Connection) => Promise<T>)