Dutch Rapley asks:
What version of the JRE is bundled with ColdFusion MX 7?Let me be a little more precise. I'm running the Standard Edition, which doesn't include drivers for Oracle. No biggie, I can download the JDBC drivers from Oracle's site and use "Other" when I register my datasources in the CF Admin. When you go to the download site, Oracle prives different drivers/classes depending upon which version of the JDK you have installed. Hence, it's good to know the version of the JRE is bundled with ColdFusion MX 7.
This is rather easy to find out. Go to your CF Admin, click on System Information, and the JRE will be listed under JVM Details. I'm pretty sure this information will exist in CFMX 6 as well.
Archived Comments
Cool, good to know! Thanks for the prompt response.
CFMX 6.1 does indeed display JVM information under "System Information" in the ColdFusion Administrator.
seems kind of whimpy ;-)
jre=createObject("java","java.lang.System");
JREversion=jre.getProperty("java.runtime.version");
JVMversion=jre.getProperty("java.vm.version");
writeoutput("JRE version #JREversion# JVM version #JVMversion#");
How do you install the JDBC drivers for Oracle on linux?