ibm_db
Version:
IBM DB2 and IBM Informix bindings for node
15 lines (14 loc) • 393 B
TypeScript
import { ODBC } from './ODBC';
import { FetchMode } from './attributes';
import { Pool } from './Pool';
export interface Options {
odbc?: ODBC;
fetchMode?: 0 | 3 | 4 | FetchMode | null;
connected?: boolean;
connectTimeout?: number | null;
systemNaming?: boolean;
codeSet?: string | null;
mode?: string | null;
pool?: Pool | null;
connStr?: string | null;
}