333
schangxiang@126.com
2025-09-19 18966e02fb573c7e2bb0c6426ed792b38b910940
1
{"version":3,"sources":["../browser/src/driver/oracle/OracleConnectionOptions.ts"],"names":[],"mappings":"","file":"OracleConnectionOptions.js","sourcesContent":["import {BaseConnectionOptions} from \"../../connection/BaseConnectionOptions\";\nimport {OracleConnectionCredentialsOptions} from \"./OracleConnectionCredentialsOptions\";\n\n/**\n * Oracle-specific connection options.\n */\nexport interface OracleConnectionOptions extends BaseConnectionOptions, OracleConnectionCredentialsOptions {\n\n    /**\n     * Database type.\n     */\n    readonly type: \"oracle\";\n\n    /**\n     * Schema name. By default is \"public\".\n     */\n    readonly schema?: string;\n\n    /**\n     * Replication setup.\n     */\n    readonly replication?: {\n\n        /**\n         * Master server used by orm to perform writes.\n         */\n        readonly master: OracleConnectionCredentialsOptions;\n\n        /**\n         * List of read-from severs (slaves).\n         */\n        readonly slaves: OracleConnectionCredentialsOptions[];\n\n    };\n\n}"],"sourceRoot":"../.."}