- JdbcParametersConfig (dbclient.jdbc) Configuration
Type: io.helidon.dbclient.jdbc.JdbcParametersConfig
Config keyparameterscontent_copy
Configuration options
| key | type | default value | description |
|---|---|---|---|
set-object-for-java-time | boolean | true | Set all |
string-binding-size | int | 1024 | String values with length above this limit will be bound using java.sql.PreparedStatement.setCharacterStream(int, java.io.Reader, int) if useStringBinding() is set to |
timestamp-for-local-time | boolean | true | Use java.sql.PreparedStatement.setTimestamp(int, java.sql.Timestamp) to set java.time.LocalTime values when |
use-byte-array-binding | boolean | true | Use java.sql.PreparedStatement.setBinaryStream(int, java.io.InputStream, int) binding for |
use-n-string | boolean | false | Use SQL |
use-string-binding | boolean | true | Use java.sql.PreparedStatement.setCharacterStream(int, java.io.Reader, int) binding for String values with length above stringBindingSize() limit. Default value is |