Description
There are many reasons for wanting to set (possibly driver-specific) options on the datasource config. For example, we need to configure the client connection to properly use utf8mb4 everywhere (it's not purely a server-side config). For this to work, we'd ideally set the characterSetEncoding and characterSetResults and connectionCollation jdbc url query params in addition to being able to override the hikari connectionInitSql property to "SET NAMES [charset] COLLATE [collation].
There are a couple options I could think of, they aren't necessarily mutually exclusive but their interactions might have to be documented.
-
Allow users to provide jdbc url params (that would get appended to the ones build in #buildJdbcUrl) with the documented caveat that the params might be driver specific.
-
Given that hikari config has been battle tested and covers a wide range of needs at this point, either expose HikariConfig directly or make DatasetConfig fields a superset of the hikari config options.