MCPcopy Create free account
hub / github.com/NobleMajo/al-sql / constructor

Method constructor

src/pg.ts:458–466  ·  view source on GitHub ↗
(
        public readonly host: string,
        public readonly port: number,
        public readonly username: string,
        public readonly password: string,
        public readonly database: string
    )

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected