This commit is contained in:
x032205
2025-06-07 00:08:32 -04:00
parent 5ee2eb1aa2
commit 2d588d87ac
5 changed files with 12 additions and 5 deletions

View File

@@ -7,6 +7,6 @@ export const getOracleDBConnectionListItem = () => {
name: "OracleDB" as const,
app: AppConnection.OracleDB as const,
methods: Object.values(OracleDBConnectionMethod) as [OracleDBConnectionMethod.UsernameAndPassword],
supportsPlatformManagement: true as const // TODO(andrey): Explore if possible
supportsPlatformManagement: true as const
};
};

View File

@@ -288,7 +288,7 @@ export const TRANSITION_CONNECTION_CREDENTIALS_TO_PLATFORM: Record<
[AppConnection.LDAP]: platformManagedCredentialsNotSupported, // we could support this in the future
[AppConnection.TeamCity]: platformManagedCredentialsNotSupported,
[AppConnection.OCI]: platformManagedCredentialsNotSupported,
[AppConnection.OracleDB]: platformManagedCredentialsNotSupported, // TODO(andrey): If managed credentials change this
[AppConnection.OracleDB]: transferSqlConnectionCredentialsToPlatform as TAppConnectionTransitionCredentialsToPlatform,
[AppConnection.OnePass]: platformManagedCredentialsNotSupported
};

View File

@@ -60,7 +60,14 @@ const getConnectionConfig = ({
}
// TODO(andrey): Might be interesting for later
case AppConnection.OracleDB: {
return {};
return {
ssl: sslEnabled
? {
sslCA: sslCertificate,
sslServerDNMatch: sslRejectUnauthorized
}
: false
};
}
default:
throw new Error(`Unhandled SQL Connection Config: ${app as AppConnection}`);

View File

@@ -68,7 +68,7 @@ export const APP_CONNECTION_MAP: Record<
[AppConnection.Postgres]: { name: "PostgreSQL", image: "Postgres.png" },
[AppConnection.MsSql]: { name: "Microsoft SQL Server", image: "MsSql.png" },
[AppConnection.MySql]: { name: "MySQL", image: "MySql.png" },
[AppConnection.OracleDB]: { name: "OracleDB", image: "Oracle.png" },
[AppConnection.OracleDB]: { name: "OracleDB", image: "Oracle.png", enterprise: true },
[AppConnection.Camunda]: { name: "Camunda", image: "Camunda.png" },
[AppConnection.Windmill]: { name: "Windmill", image: "Windmill.png" },
[AppConnection.Auth0]: { name: "Auth0", image: "Auth0.png", size: 40 },

View File

@@ -51,7 +51,7 @@ export const OracleDBConnectionForm = ({ appConnection, onSubmit }: Props) => {
credentials: {
host: "",
port: 1521,
database: "FREEPDB1",
database: "ORCL", // Typically FREEPDB1 or ORCL
username: "", // Typically pdbadmin or ADMIN
password: "",
sslEnabled: true,