MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / Connection

Interface Connection

src/types/connection.ts:21–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21export interface Connection {
22 id: Id;
23 title: string;
24 engineType: Engine;
25 host: string;
26 port: string;
27 username: string;
28 password: string;
29 // database is only required for PostgreSQL.
30 database?: string;
31 // encrypt is only required for MSSQL.
32 encrypt?: boolean;
33 ssl?: SSLOptions;
34}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected