Database connection with token instead of login/password

0
Hello, I am looking for a way to use External Database Connector or Database Connector or anything which will parse queries into/from Mendix objects to SQL while authenticating with access token. Using login/password is not accepted by our security in some cases and existing connectors are all based on login/pass combinations.   In Java we can use: SQLServerDataSource dataSource = new SQLServerDataSource(); dataSource.setServerName(server);  dataSource.setPortNumber(1433); dataSource.setDatabaseName(database); dataSource.setAccessToken(token);  Connection connection = dataSource.getConnection();   I wanted to 'update' existing connectors Java actions but they all use HikariCP to manage connections and my issue is even raised there as Open since 2020 https://github.com/brettwooldridge/HikariCP/issues/1544   Any advise or help how to switch authorization to token is appreciated.
asked
0 answers