UNPKG

quaerateum

Version:

Simple typescript ORM for node.js based on data-mapper, unit-of-work and identity-map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JS.

11 lines (7 loc) 387 B
import { SqliteConnection } from '../connections/SqliteConnection'; import { AbstractSqlDriver } from './AbstractSqlDriver'; import { SqlitePlatform } from '../platforms/SqlitePlatform'; export class SqliteDriver extends AbstractSqlDriver<SqliteConnection> { protected readonly connection = new SqliteConnection(this.config); protected readonly platform = new SqlitePlatform(); }