B4J Question jrdc2 only recognizes versions up to 55

Hamied Abou Hulaikah

Well-Known Member
Licensed User
Longtime User
I'm try to using cassandra driver to connect, I got this error:
B4X:
java.lang.UnsupportedClassVersionError: com/wisecoders/dbschema/cassandra/JdbcDriver has been compiled by a more recent version of the Java Runtime (class file version 56.0), this version of the Java Runtime only recognizes class file versions up to 55.0
 
Solution
Thank you for everyone

I googled & found something like this:
  • ...
  • 49 = Java 5
  • 50 = Java 6
  • 51 = Java 7
  • 52 = Java 8
  • 53 = Java 9
  • 54 = Java 10
  • 55 = Java 11
  • 56 = Java 12
  • 57 = Java 13
  • ...
So, I solved it by downloading jdk 18 (latest up to today) & set it in B4J java path.
Cassandra now connected successfully.

Chris2

Active Member
Licensed User
If you mean b4j compiling, i use jdk-11.0.1
Maybe you need to use a later version....

You can use any version you want or need to,
 
Upvote 0

Hamied Abou Hulaikah

Well-Known Member
Licensed User
Longtime User
Thank you for everyone

I googled & found something like this:
  • ...
  • 49 = Java 5
  • 50 = Java 6
  • 51 = Java 7
  • 52 = Java 8
  • 53 = Java 9
  • 54 = Java 10
  • 55 = Java 11
  • 56 = Java 12
  • 57 = Java 13
  • ...
So, I solved it by downloading jdk 18 (latest up to today) & set it in B4J java path.
Cassandra now connected successfully.
 
Upvote 0
Solution
Top