UNPKG

typeorm

Version:

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

46 lines (45 loc) 902 B
/** * SAP Hana specific connection credential options. */ export interface SapConnectionCredentialsOptions { /** * 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; /** * Encrypt database connection */ readonly encrypt?: boolean; /** * Validate database certificate */ readonly sslValidateCertificate?: boolean; /** * Key for encrypted connection */ readonly key?: string; /** * Cert for encrypted connection */ readonly cert?: string; /** * Ca for encrypted connection */ readonly ca?: string; }