sql - Java class file format limit(s) exceeded: -


I am using derby in-memory db in java. And I want to run a SQL my SQL string length is 61671 bytes but I got more than Java class file format limit (O): method: e1 code_length (72447> 65535) error . I know that the limit on the Derby should be less than 65535 bytes, just like the code boundary. It's OK ()

But now my string length is 61671. Why am I getting the code_length error (72447> 65535)?

How can I fix this?

thx

My string length is just 61671. Why am I getting code_length (72447> 65535) error?

Because the length of the code and length of the string are two different things, your code is too long, divide it.

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -