oracle thick mode available for electron app

This commit is contained in:
Jan Prochazka
2024-07-31 12:06:02 +02:00
parent 5e68ce3218
commit dc45b1e75f
7 changed files with 53 additions and 41 deletions

View File

@@ -90,7 +90,13 @@ export interface EngineDriver {
profilerChartMeasures?: { label: string; field: string }[];
isElectronOnly?: boolean;
supportedCreateDatabase?: boolean;
showConnectionField?: (field: string, values: any) => boolean;
showConnectionField?: (
field: string,
values: any,
{
config: {},
}
) => boolean;
showConnectionTab?: (tab: 'ssl' | 'sshTunnel', values: any) => boolean;
beforeConnectionSave?: (values: any) => any;
databaseUrlPlaceholder?: string;