Hi,
 Is it possible to manipulate the Result in memory data ?

Let me explain; I have a Result and this is its result.format():

+----+-----+
| sex|count|
+----+-----+
|   F|    2|
|   M|    3|
+----+-----+

Is there a way to update the in memory dataset to change the data like this?

+-------+-----+
|    sex|count|
+-------+-----+
|Femmine|    2|
| Maschi|    3|
+-------+-----+

Beware that 'sex' field is VARCHAR(1) so I think there will not 
be enough room to store 'Femmine' or 'Maschi'

Another situation is where I have one Result with three columns and I want 
to merge two of them in one new calculated column.
Is there a way for such programmatic manipulation?

thanks
Simone

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to