quartz-scheduler / quartz

Code for Quartz Scheduler
http://www.quartz-scheduler.org
Apache License 2.0
6.32k stars 1.94k forks source link

Fix #1161 Add Oracle23 SQL script using BOOLEAN #1221

Closed melloware closed 1 month ago

melloware commented 1 month ago

Fix #1161 Add Oracle23 SQL script using BOOLEAN

Oracle 23 uses BOOLEAN instead of VARCHAR2(1)

bcode2 commented 1 month ago

Should we worry about getboolean()?. Seem that true/false may be a problem?

https://github.com/openjdk-mirror/jdk/blob/jdk8u/jdk8u/master/src/share/classes/java/sql/ResultSet.java

melloware commented 1 month ago

Good question. We have this discussion going on https://github.com/quarkusio/quarkus/issues/43720#issuecomment-2399045448

And I have been running fine with these changes as well so i think its all working

bcode2 commented 1 month ago

Perfect!!!!!! @melloware :+1:

jhouserizer commented 1 month ago

Thanks!