Re: JDK 9 Jigsaw builds

2016-07-16 Thread Russel Winder
On Sat, 2016-07-16 at 19:31 +0100, Russel Winder wrote: […] > I find that: > > ./gradlew clean && ./gradlew --parallel install The --parallel is not the problem here, it behaves the same without it. > results in an error very early on: > > … > :compileJava > warning: [options] bootstrap class

Re: JDK 9 Jigsaw builds

2016-07-16 Thread Russel Winder
On Fri, 2016-07-15 at 17:12 +0200, Cédric Champeau wrote: > […] > I'm just doing this: > > JAVA_HOME=/opt/jdk1.9.0-jigsaw gw -Dscan --continue --parallel test > > Are you sure you are using the jigsaw build of JDK 9? I find that: ./gradlew clean && ./gradlew --parallel install results in an e

Re: JDK 9 Jigsaw builds

2016-07-16 Thread Jochen Theodorou
On 15.07.2016 21:54, Jochen Theodorou wrote: On 15.07.2016 16:20, Cédric Champeau wrote: [...] Our build is still not fully Jigsaw compatible, there are still a significant number of errors, including spurious classloading issues: https://scans.gradle.com/s/jaefpwpny743e So after fidling aroun

Re: Groovy Better Approach to create comma separated string from Database Select Query

2016-07-16 Thread Bay Batu
Hi, You can use PL/SQL’s built-in aggregation method with your joins. psuedo code: select listagg(i.value, ',') within GROUP(order by i.priority) from user u left outer join infotable i on i.id = u.info_id where …; It would be wrong query, i did not test it but main part is “listagg within gro

Groovy Better Approach to create comma separated string from Database Select Query

2016-07-16 Thread GroovyBeginner
I am trying to connect to oracle database table and pull the data and form the result in the form of comma separated values. I have written a sample code which works fine but wanted to have a better approach if the query is associated with more tables (joins), then the time is taken to get the outp