Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OracleProfile

import type { OracleProfile } from "https://googleapis.deno.dev/v1/datastream:v1.ts";

Oracle database profile.

interface OracleProfile {
connectionAttributes?: {
[key: string]: string;
}
;
databaseService?: string;
hostname?: string;
oracleSslConfig?: OracleSslConfig;
password?: string;
port?: number;
username?: string;
}

§Properties

§
connectionAttributes?: {
[key: string]: string;
}
[src]

Connection string attributes

§
databaseService?: string
[src]

Required. Database for the Oracle connection.

§
hostname?: string
[src]

Required. Hostname for the Oracle connection.

§
oracleSslConfig?: OracleSslConfig
[src]

Optional. SSL configuration for the Oracle connection.

§
password?: string
[src]

Required. Password for the Oracle connection.

§
port?: number
[src]

Port for the Oracle connection, default value is 1521.

§
username?: string
[src]

Required. Username for the Oracle connection.