vert-x / mod-mysql-postgresql

Vert.x 2.x is deprecated - use instead
http://vertx.io/docs/vertx-mysql-postgresql-client/java/
Apache License 2.0
49 stars 17 forks source link

db results object toString error #55

Closed ghost closed 9 years ago

ghost commented 9 years ago

JsonArray dbResults = body.getArray("results");

// in debug mode in eclipse, the object "dbResults" gives me this error com.sun.jdi.InvocationException occurred invoking method.

when trying to call "toString" method, example: dbResults.toString();

I get: java.lang.NoClassDefFoundError: scala/collection/immutable/NumericRange$Exclusive

Note: the db values are there, and it works fine, its just when I call toString i get this issue.

Narigo commented 9 years ago

As said in the other issue, could you try the 2.10 version of the module please?

ghost commented 9 years ago

After adding scala library to my project to solve issue #54, this problem disappeared, and toString works just fine now!