I've got a script that requires a driver, and performs a few selects to a DB for quality purposes. Well, this script "dbquality.jar" is executed with this:
java -Xmx1024m -jar dbquality.jar
... but it throws:
Exception in thread "main" java.lang.UnsupportedClassDriverVersionError dbquality/Dbquality : Unsupported major.minor version 52.0
How can I fix it? If possible, without needing to re-compile the file. If there is no more option, tell me how can I fix it. I think that both computers got the JDK 7, but I may be wrong. This computer (the script executer) does have it; will check later if the compiler computer also does.
Some help here!