UNPKG

node-jdbc-tibero

Version:

This package is help to use tibero jdbc connection

19 lines (18 loc) 604 B
import IConnectionType from '../IConnectionType'; import IConnectionConfig from '../IConnectionConfig'; export default class PostgreSQL implements IConnectionType { protected config: IConnectionConfig; protected driverName: string; protected driverVersion: string; driver: string; constructor(config: IConnectionConfig); get_config: () => { url: string; drivername: string; user: string; password: string; }; get_query: (tableName: string, type?: string) => string; get_version: () => string; protected get_jdbcUrl: () => string; }