Java – how do I check the JDK version in oracle?

We have a Java class in Oracle database. Recently, an error was raised in a line of code in this class:

static BASE64Encoder B64 = new BASE64Encoder();

We see mistakes

On this line of code

I don't know what's changed on the DB side because we don't have sys permission or access to the host

I want to check the JDK version running our Oracle DB –

thank you.

Solution

SELECT  dbms_java.get_ojvm_property(PROPSTRING=>'java.version') FROM dual
SELECT  dbms_java.get_ojvm_property(PROPSTRING=>'java.version') FROM dual
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>