Configuration property |
Type |
Default |
Environment variable: QUARKUS_DOMA_DIALECT
|
db2, h2, mssql, mysql, oracle, postgres, standard, sqlite
|
depends on 'quarkus.datasource.db-kind'
|
Environment variable: QUARKUS_DOMA_BATCH_SIZE
|
int |
0
|
Environment variable: QUARKUS_DOMA_FETCH_SIZE
|
int |
0
|
Environment variable: QUARKUS_DOMA_MAX_ROWS
|
int |
0
|
The query timeout limit in seconds.
Environment variable: QUARKUS_DOMA_QUERY_TIMEOUT
|
int |
0
|
Name of the file containing the SQL statements to execute when Doma starts. Its default value differs depending on the Quarkus launch mode:
* In dev and test modes, it defaults to import.sql. Simply add an import.sql file in the root of your resources directory and it will be picked up without having to set this property. Pass no-file to force Doma to ignore the SQL import file. * In production mode, it defaults to no-file. It means Doma won’t try to execute any SQL import file by default. Pass an explicit value to force Doma to execute the SQL import file.
Environment variable: QUARKUS_DOMA_SQL_LOAD_SCRIPT
|
string |
import.sql in DEV, TEST ; no-file otherwise
|
Environment variable: QUARKUS_DOMA_SQL_FILE_REPOSITORY
|
|
greedy-cache
|
The naming convention controller.
Environment variable: QUARKUS_DOMA_NAMING
|
none, lower-case, upper-case, snake-lower-case, snake-upper-case
|
none
|
The SQL log type that determines the SQL log format in exceptions.
Environment variable: QUARKUS_DOMA_EXCEPTION_SQL_LOG_TYPE
|
|
none
|
Additional named datasources |
Type |
Default |
Environment variable: QUARKUS_DOMA__DATASOURCE_NAME__DIALECT
|
db2, h2, mssql, mysql, oracle, postgres, standard, sqlite
|
depends on 'quarkus.datasource.db-kind'
|
Environment variable: QUARKUS_DOMA__DATASOURCE_NAME__BATCH_SIZE
|
int |
0
|
Environment variable: QUARKUS_DOMA__DATASOURCE_NAME__FETCH_SIZE
|
int |
0
|
Environment variable: QUARKUS_DOMA__DATASOURCE_NAME__MAX_ROWS
|
int |
0
|
The query timeout limit in seconds.
Environment variable: QUARKUS_DOMA__DATASOURCE_NAME__QUERY_TIMEOUT
|
int |
0
|
Name of the file containing the SQL statements to execute when Doma starts. Its default value differs depending on the Quarkus launch mode:
* In dev and test modes, it defaults to import.sql. Simply add an import.sql file in the root of your resources directory and it will be picked up without having to set this property. Pass no-file to force Doma to ignore the SQL import file. * In production mode, it defaults to no-file. It means Doma won’t try to execute any SQL import file by default. Pass an explicit value to force Doma to execute the SQL import file.
Environment variable: QUARKUS_DOMA__DATASOURCE_NAME__SQL_LOAD_SCRIPT
|
string |
import.sql in DEV, TEST ; no-file otherwise
|