Server IP : 150.95.80.236 / Your IP : 3.147.195.146 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/protocol/sequences/ |
Upload File : |
import { Sequence } from './Sequence.js'; import { Query, QueryError, StreamOptions } from '../sequences/Query.js'; import { OkPacket, FieldPacket, RowDataPacket, ResultSetHeader, } from '../packets/index.js'; import { Readable } from 'stream'; export class PrepareStatementInfo { close(): void; execute< T extends | RowDataPacket[][] | RowDataPacket[] | OkPacket | OkPacket[] | ResultSetHeader >( parameters: any | any[] | { [param: string]: any }, callback?: (err: QueryError | null, result: T, fields: FieldPacket[]) => any ): Query; } declare class Prepare extends Sequence { /** * The SQL for a constructed query */ sql: string; /** * Emits a query packet to start the query */ start(): void; /** * Determines the packet class to use given the first byte of the packet. * * @param firstByte The first byte of the packet * @param parser The packet parser */ determinePacket(firstByte: number, parser: any): any; /** * Creates a Readable stream with the given options * * @param options The options for the stream. */ stream(options?: StreamOptions): Readable; on(event: string, listener: (args: []) => void): this; on(event: 'error', listener: (err: QueryError) => any): this; on( event: 'fields', listener: (fields: FieldPacket, index: number) => any ): this; on( event: 'result', listener: (result: RowDataPacket | OkPacket, index: number) => any ): this; on(event: 'end', listener: () => any): this; } export { Prepare };