Compare commits

...

1 Commits

Author SHA1 Message Date
=
08e0074b10 fix: resolved oracle failing in app connection 2025-07-17 16:23:52 +05:30

View File

@ -106,7 +106,7 @@ export const validateSqlConnectionCredentials = async (config: TSqlConnectionCon
try {
client = await getSqlConnectionClient({ app, credentials });
await client.raw(`Select 1`);
await client.raw(config.app === AppConnection.OracleDB ? `SELECT 1 FROM DUAL` : `Select 1`);
return credentials;
} catch (error) {