From 975111b12121ebe9100855abda92c05483a361ca Mon Sep 17 00:00:00 2001 From: Brett Wooldridge Date: Tue, 30 Sep 2014 22:45:11 +0900 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7abfcae7..851db249 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,7 @@ before timing out. *Default: 10* :abc:``username``
This property sets the default authentication username used when obtaining *Connections* from the underlying driver. Note that for DataSources this works in a very deterministic fashion by -calling ``DataSource.getConnection(*username*, password) on the underlying DataSource. However, +calling ``DataSource.getConnection(*username*, password)`` on the underlying DataSource. However, for Driver-based configurations, every driver is different. In the case of Driver-based, HikariCP will use this ``username`` property to set a ``user`` property in the ``Properties`` passed to the driver's ``DriverManager.getConnection(jdbcUrl, props)`` call. If this is not what you need, @@ -210,7 +210,7 @@ skip this method entirely and call ``addDataSourceProperty("username", ...)``, f :abc:``password``
This property sets the default authentication password used when obtaining *Connections* from the underlying driver. Note that for DataSources this works in a very deterministic fashion by -calling ``DataSource.getConnection(username, *password*) on the underlying DataSource. However, +calling ``DataSource.getConnection(username, *password*)`` on the underlying DataSource. However, for Driver-based configurations, every driver is different. In the case of Driver-based, HikariCP will use this ``password`` property to set a ``password`` property in the ``Properties`` passed to the driver's ``DriverManager.getConnection(jdbcUrl, props)`` call. If this is not what you need,