typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
50 lines (49 loc) • 1.43 kB
TypeScript
import { BaseConnectionOptions } from "../../connection/BaseConnectionOptions";
import { SapConnectionCredentialsOptions } from "./SapConnectionCredentialsOptions";
/**
* SAP Hana specific connection options.
*/
export interface SapConnectionOptions extends BaseConnectionOptions, SapConnectionCredentialsOptions {
/**
* Database type.
*/
readonly type: "sap";
/**
* Database schema.
*/
readonly schema?: string;
/**
* Pool options.
*/
readonly pool?: {
/**
* Max number of connections.
*/
readonly max?: number;
/**
* Minimum number of connections.
*/
readonly min?: number;
/**
* Maximum number of waiting requests allowed. (default=0, no limit).
*/
readonly maxWaitingRequests?: number;
/**
* Max milliseconds a request will wait for a resource before timing out. (default=5000)
*/
readonly requestTimeout?: number;
/**
* How often to run resource timeout checks. (default=0, disabled)
*/
readonly checkInterval?: number;
/**
* Idle timeout
*/
readonly idleTimeout?: number;
/**
* Function handling errors thrown by drivers pool.
* Defaults to logging error with `warn` level.
*/
readonly poolErrorHandler?: (err: any) => any;
};
}