Server IP : 150.95.80.236 / Your IP : 13.58.187.240 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/api-uat.pcu.in.th/node_modules/mysql2/typings/mysql/lib/ |
Upload File : |
import { EventEmitter } from 'events'; import { PrepareStatementInfo } from './protocol/sequences/Prepare.js'; import { ConnectionOptions } from './Connection.js'; import { PoolConnection } from './PoolConnection.js'; import { Pool as PromisePool, PoolConnection as PromisePoolConnection, } from '../../../promise.js'; import { QueryableBase } from './protocol/sequences/QueryableBase.js'; import { ExecutableBase } from './protocol/sequences/ExecutableBase.js'; export interface PoolOptions extends ConnectionOptions { /** * Determines the pool's action when no connections are available and the limit has been reached. If true, the pool will queue * the connection request and call it when one becomes available. If false, the pool will immediately call back with an error. * (Default: true) */ waitForConnections?: boolean; /** * The maximum number of connections to create at once. (Default: 10) */ connectionLimit?: number; /** * The maximum number of idle connections. (Default: same as `connectionLimit`) */ maxIdle?: number; /** * The idle connections timeout, in milliseconds. (Default: 60000) */ idleTimeout?: number; /** * The maximum number of connection requests the pool will queue before returning an error from getConnection. If set to 0, there * is no limit to the number of queued connection requests. (Default: 0) */ queueLimit?: number; } declare class Pool extends QueryableBase(ExecutableBase(EventEmitter)) { getConnection( callback: ( err: NodeJS.ErrnoException | null, connection: PoolConnection ) => any ): void; releaseConnection(connection: PoolConnection | PromisePoolConnection): void; end( callback?: (err: NodeJS.ErrnoException | null, ...args: any[]) => any ): void; on(event: string, listener: (...args: any[]) => void): this; on(event: 'connection', listener: (connection: PoolConnection) => any): this; on(event: 'acquire', listener: (connection: PoolConnection) => any): this; on(event: 'release', listener: (connection: PoolConnection) => any): this; on(event: 'enqueue', listener: () => any): this; unprepare(sql: string): PrepareStatementInfo; promise(promiseImpl?: PromiseConstructor): PromisePool; config: PoolOptions; } export { Pool };