[jOOQ/jOOQ#12149] DSL.using(String, String, String) based R2DBC Connection does not use provided username and password

This commit is contained in:
Lukas Eder 2021-07-12 09:46:48 +02:00
parent b7e34ee27f
commit ba7a6172d0

View File

@ -680,7 +680,7 @@ final class R2DBC {
Properties properties = new Properties();
properties.setProperty("user", username);
properties.setProperty("password", password);
return getConnection(url, new Properties());
return getConnection(url, properties);
}
static final Connection getConnection(String url, Properties properties) {