UNPKG

typeorm

Version:

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

13 lines (11 loc) 427 B
import { DataSource } from "../data-source/DataSource"; /** * Connection is a single database ORM connection to a specific database. * Its not required to be a database connection, depend on database type it can create connection pool. * You can have multiple connections to multiple databases in your application. * * @deprecated */ export class Connection extends DataSource { } //# sourceMappingURL=Connection.js.map