Skip to Main Content

Java Database Connectivity (JDBC)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

When will the JDBC 19.3 driver be available in the Oracle Maven repo?

Georg FriedrichJun 7 2019 — edited Jun 7 2019

Hi,

I'm wondering when will the Oracle JDBC driver version 19.3 be available in the Oracle Maven repository?

At least I was not able to find it.

Thanks for any help in advance.

Kind regards

Georg Friedrich

Comments

gdarling - oracle
Do you see the same behavior when connecting via SQLPlus after setting the environment variables? Is this an ODP.NET specific issue? If it's not specific to ODP, you'll probably get better insight by posting in one of the generic database forums.

With respect to ODP specific solutions, have you already checked out the OracleGlobalization class?
http://docs.oracle.com/cd/B19306_01/win.102/b14307/OracleGlobalizationClass.htm#i1009565

Hope it helps,
Greg
928114
Yes even connecting to SQLPlus having environmental variable setting.. facing same problem.. However on explicitly setting NLS cases insensitive session values on each logon it is working..
Don Kleppinger
We have always used the login trigger to set the NLS settings. Our DBA set this up when we were on 10g and still do it now that we are on 11g. There must have been a reason he set up up using the trigger. Maybe same issue you're having. Since we are using connection pooling anyway I believe the login trigger only fires once anyway and we don't have any performance problems with getting connections.
Don Kleppinger
note that if you use the global NLS setting, all of your indexes on text columns must be function based indexes or they won't be used.
i.e
NLSSORT("FIRST_NAME",'nls_sort=''BINARY_CI''')
1 - 4

Post Details

Added on Jun 7 2019
1 comment
512 views