Re: [Virtuoso-users] Passing Java String Array to Virtuoso Stored Procedure

2014-06-02 Thread Hugh Williams
Hi Jerven, I was actually checking that issue over the weekend and it appears there is a proposed fix to hook the JDBC createArrayOf method into the function Orri implemented server side, which now needs to be tested and added to the open source git repo which should be sometime this week ...

Re: [Virtuoso-users] Passing Java String Array to Virtuoso Stored Procedure

2014-06-02 Thread Jerven Tjalling Bolleman
Hi all, Just to note. This is also the blocking issue for https://github.com/openlink/virtuoso-opensource/issues/155. Regards, Jerven On 02/06/14 10:43, s...@in.gr wrote: > Hey guys, > > I' m doing a lot of SELECT queries in a loop and constant JDBC calls > seem to ruin my performance. I wanna

[Virtuoso-users] Passing Java String Array to Virtuoso Stored Procedure

2014-06-02 Thread sieg
Hey guys, I' m doing a lot of SELECT queries in a loop and constant JDBC calls seem to ruin my performance. I wanna try to send an array of all the Strings I use in my queries to avoid JDBC overhead and later get the result sets back. JDBC4 driver does not seem to support the Types.Array type. Is