UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

42 lines (41 loc) 823 B
/** * Oracle specific connection credential options. */ export interface OracleConnectionCredentialsOptions { /** * Connection url where the connection is performed. */ readonly url?: string; /** * Database host. */ readonly host?: string; /** * Database host port. */ readonly port?: number; /** * Database username. */ readonly username?: string; /** * Database password. */ readonly password?: string; /** * Database name to connect to. */ readonly database?: string; /** * Connection SID. */ readonly sid?: string; /** * Connection Service Name. */ readonly serviceName?: string; /** * Embedded TNS Connection String */ readonly connectString?: string; }