Jojo Paderes wrote:
> Is the Array class used in the method refers to java.sql.Array? If
> yes, I think it's not possible to use that to create an object since
> it is an interface.
Yes it's java.sql.Array, but the code is creating an instance of an
anonymous inner class that implements Array, which is fine:
>> Array a = new Array() {
>> public String getBaseTypeName() {return "int4";}
[...]
-O