Spaces:
Running
Running
File size: 2,585 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
import { Pool as BasePool, PoolOptions } from './lib/Pool.js';
import {
Connection as BaseConnection,
ConnectionOptions,
SslOptions,
} from './lib/Connection.js';
import {
Query as BaseQuery,
QueryOptions,
QueryError,
} from './lib/protocol/sequences/Query.js';
import {
PoolCluster as BasePoolCluster,
PoolClusterOptions,
PoolNamespace,
} from './lib/PoolCluster.js';
import { PoolConnection as BasePoolConnection } from './lib/PoolConnection.js';
import {
Prepare as BasePrepare,
PrepareStatementInfo,
} from './lib/protocol/sequences/Prepare.js';
import { Server } from './lib/Server.js';
export {
ConnectionOptions,
SslOptions,
PoolOptions,
PoolClusterOptions,
PoolNamespace,
QueryOptions,
QueryError,
PrepareStatementInfo,
};
export * from './lib/protocol/packets/index.js';
export * from './lib/Auth.js';
export * from './lib/constants/index.js';
export * from './lib/parsers/index.js';
// Expose class interfaces
export interface Connection extends BaseConnection {}
export interface Pool extends BasePool {}
export interface PoolConnection extends BasePoolConnection {}
export interface PoolCluster extends BasePoolCluster {}
export interface Query extends BaseQuery {}
export interface Prepare extends BasePrepare {}
export function createConnection(connectionUri: string): BaseConnection;
export function createConnection(config: ConnectionOptions): BaseConnection;
export function createPool(connectionUri: string): BasePool;
export function createPool(config: PoolOptions): BasePool;
export function createPoolCluster(config?: PoolClusterOptions): PoolCluster;
export function escape(value: any): string;
export function escapeId(value: any): string;
export function format(sql: string): string;
export function format(
sql: string,
values: any[],
stringifyObjects?: boolean,
timeZone?: string,
): string;
export function format(
sql: string,
values: any,
stringifyObjects?: boolean,
timeZone?: string,
): string;
export function raw(sql: string): {
toSqlString: () => string;
};
export interface ConnectionConfig extends ConnectionOptions {
mergeFlags(defaultFlags: string[], userFlags: string[] | string): number;
getDefaultFlags(options?: ConnectionOptions): string[];
getCharsetNumber(charset: string): number;
getSSLProfile(name: string): { ca: string[] };
parseUrl(url: string): {
host: string;
port: number;
database: string;
user: string;
password: string;
[key: string]: any;
};
}
export function createServer(handler: (conn: BaseConnection) => any): Server;
|