mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-13 12:48:31 +00:00
14 lines
293 B
Python
14 lines
293 B
Python
#!/usr/bin/env python3
|
|
# -*- coding:utf-8 -*-
|
|
from pilot.connections.rdbms.rdbms_connect import RDBMSDatabase
|
|
|
|
|
|
class OracleConnector(RDBMSDatabase):
|
|
"""OracleConnector"""
|
|
|
|
type: str = "ORACLE"
|
|
|
|
driver: str = "oracle"
|
|
|
|
default_db = ["SYS", "SYSTEM", "OUTLN", "ORDDATA", "XDB"]
|