Re: non-catchable exception?

2016-10-12 Thread Dinko Srkoč
On 12 October 2016 at 18:27, Søren Berg Glasius wrote: > This question should be asked in us...@groovy.apache.org > > And the answer to the question must be, no. But you could check if Well, strictly speaking, that's not quite true ;-) @groovy.transform.InheritConstructors class MySpecialExc

Re: Oracle Insert Data from one table to another table using Groovy

2016-07-28 Thread Dinko Srkoč
Result is probably being displayed as null because `forEach` method in fact returns `void`, which Groovy transforms into `null`, as it expects a method to actually return something. As for nothing being inserted, perhaps there is nothing to insert (every ID in A is also in B)? Cheers, Dinko On 2

Re: Oracle Insert Data from one table to another table using Groovy

2016-07-26 Thread Dinko Srkoč
On 26 July 2016 at 15:47, GroovyBeginner wrote: > I tried this and facing the following issue > > groovy.lang.MissingPropertyException: No such property: ID for class: > oracle.jdbc.driver.OracleResultSetImpl I'm only guessing here because I can't run the code at the moment and I'd always avoided