1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Tidy and remove unused fields

This commit is contained in:
Rory Powell 2021-11-09 17:52:26 +00:00
parent 9bcfa0af70
commit 231ddda4e7

View file

@ -9,9 +9,11 @@ import { getSqlQuery } from "./utils"
import oracledb, { ExecuteOptions, Result } from "oracledb"
import { Connection, ConnectionAttributes } from "oracledb"
import Sql from "./base/sql"
module OracleModule {
oracledb.outFormat = oracledb.OUT_FORMAT_OBJECT;
interface OracleConfig {
host: string
port: number
@ -64,9 +66,8 @@ module OracleModule {
},
}
class OracleIntegration extends Sql {
private readonly config: OracleConfig
public tables: Record<string, Table> = {}
public schemaErrors: Record<string, string> = {}
constructor(config: OracleConfig) {
super("oracle")