Skip to content

java.sql.SQLException: Exhausted Resultset

I get the error java.sql.SQLException: Exhausted ResultSet to run a query against an Oracle database. The connection is via a connection pool defined in Websphere. The code executed is as follows: I note that the resultset contains data (rs.next ()) Thanks Answer I’ve seen this error while trying to acc…

Calling super super class method

Let’s say I have three classes A, B and C. B extends A C extends B All have a public void foo() method defined. Now from C’s foo() method I want to invoke A’s foo() method (NOT its parent B’s method but the super super class A’s method). I tried super.super.foo();, but it’s…

Differences among various bool types?

What are the differences among bool, boolean and Boolean in Java/Android? Answer bool does not seem to exist, at least I can’t find references to it. boolean is a primitive boolean type, not an object. Boolean is the wrapper object for a boolean.

What is this: [Ljava.lang.Object;?

I get this when I call toString on an object I received from a function call. I know the type of the object is encoded in this string, but I don’t know how to read it. What is this type of encoding called? Answer [Ljava.lang.Object; is the name for Object[].class, the java.lang.Class representing the cl…

How to make a copy of ArrayList object which is type of List?

I studied that Java passes object references by value, and in order to make a local copy of an object I can either do clone() or copy-constructor. I also looked at deep/shallow copy as well as several posts on Stack Overflow. I am looking at this example: Only a few articles I read mention that ArrayList impl…

dynamically increasing java heap space

I have written a java program that tests the speed of a couple of multi-threading algorithms on different machines with various numbers of processors. On some machines, merge sort* fails because it requires a sizable heap space to work on very large arrays. I can easily change the java heap space myself befor…

Holidays – is there a java implementation?

I’d like to know if there is a jar-file out there that could do the following: If there isn’t, why? Surely there are lots of properly based rules for the holidays in 99% of the times. Right now we’re mainting a table in our database, with the countries + we have some implementation when it c…