UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

34 lines (33 loc) 711 B
/** * SqlServer specific connection credential options. */ export interface SqlServerConnectionCredentialsOptions { /** * Connection url where perform connection to. */ 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; /** * Once you set domain, driver will connect to SQL Server using domain login. */ readonly domain?: string; }