initQuery property
One or more SQL statements for the proxy to run when opening each new
database connection. Typically used with SET
statements to make
sure that each connection has identical settings such as time zone and
character set. For multiple statements, use semicolons as the separator. You
can also include multiple variables in a single SET
statement,
such as SET x=1, y=2
.
Default: no initialization query
Implementation
final String? initQuery;