Jdbc |
ObjectFactory.createJdbc() |
Create an instance of Jdbc
|
Jdbc |
Configuration.getJdbc() |
The JDBC configuration element contains information about how to set up the database connection used for source code generation.
|
Jdbc |
Jdbc.withAutoCommit(Boolean value) |
|
Jdbc |
Jdbc.withDriver(String value) |
The JDBC driver class.
|
Jdbc |
Jdbc.withInitScript(String value) |
A script to run after creating the JDBC connection, and before running the code generator.
|
Jdbc |
Jdbc.withInitSeparator(String value) |
The separator used to separate statements in the initScript, defaulting to ";".
|
Jdbc |
Jdbc.withPassword(String value) |
The JDBC connection password.
|
Jdbc |
Jdbc.withProperties(Collection<Property> values) |
|
Jdbc |
Jdbc.withProperties(List<Property> properties) |
|
Jdbc |
Jdbc.withProperties(Property... values) |
|
Jdbc |
Jdbc.withSchema(String value) |
Deprecated.
|
Jdbc |
Jdbc.withUrl(String value) |
The JDBC connection URL.
|
Jdbc |
Jdbc.withUser(String value) |
The JDBC connection user.
|
Jdbc |
Jdbc.withUsername(String value) |
Just a synonym for "user" to be compatible with other Maven plugins.
|