mirror of
https://github.com/jlengrand/Exposed.git
synced 2026-03-10 08:11:20 +00:00
760 B
760 B
Oracle Dialect
Limitations
- Only Oracle 12 supported (limit with
FETCH ... ROWS ONLY) autoinccolumns supported by sequences, need an argument with sequence nameinsertwithselectwithlimitnot supported (DMLTests.testInsertSelect01)
Running tests locally with Gradle
- Set
dialectin gradle.properties to 'oracle' - Run
exposedDialectTestWithDockergradle task
Running tests locally with Docker
- Run SQL Server locally, e.g. with
sath89/oracle-12cDocker image or usedocker-compose -f docker-compose-oracle.yml up - Run tests with
-Dexposed.test.dialects=oracle, (optionally you may need to provide-Dexposed.test.oracle.host=_YOUR_DOCKER_HOST_ -exposed.test.oracle.port=_SQLSERVER_SERVER_EXPOSED_PORT_)