From 76a0dc877a3b8f079ca98fd74ef7329130fd6865 Mon Sep 17 00:00:00 2001 From: Jan Weyrich Date: Wed, 15 May 2024 10:06:58 +0200 Subject: [PATCH] info on oralce thin driver --- docs/jdbc.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/jdbc.md b/docs/jdbc.md index a05fc8f5..6683c163 100644 --- a/docs/jdbc.md +++ b/docs/jdbc.md @@ -36,12 +36,13 @@ If you want to query a table which has lower case letters in it, you need to add ´´´sql select + from "flyway_schema_history" -``` +´´´ +Same goes for fieldnames. By default oracle thin driver send every table and field name in uppercase even if you wrote lowercase letter. ## integration into spring boot -- For mininal setup use `spring-boot-starter-jdbc`. +- For mininal setup use `spring-boot-starter-jdbc`. - If you want spring data like access use `spring-boot-starter-data-jdbc`, but then you may just use spring-data-jpa ### maven