(
public readonly host: string,
public readonly port: number,
public readonly username: string,
public readonly password: string,
public readonly database: string
)
| 456 | public connected: boolean = false |
| 457 | |
| 458 | constructor( |
| 459 | public readonly host: string, |
| 460 | public readonly port: number, |
| 461 | public readonly username: string, |
| 462 | public readonly password: string, |
| 463 | public readonly database: string |
| 464 | ) { |
| 465 | this.dialect = new PostgresSqlDialect() |
| 466 | } |
| 467 | |
| 468 | getDialect(): AbstractSqlDialect { |
| 469 | return this.dialect |
nothing calls this directly
no outgoing calls
no test coverage detected