Re: post processing ResultSet

2014-02-03 Thread Andy Seaborne
On 02/02/14 18:29, Milorad Tosic wrote: Hi, I need to post process ResultSet such that few new columns are custom computed by my code and inserted into the ResultSet. > For example, let's have the following result set: | a | b | | 1 | 2 | I would like to return the following resultset inste

post processing ResultSet

2014-02-02 Thread Milorad Tosic
Hi, I need to post process ResultSet such that few new columns are custom computed by my code and inserted into the ResultSet. For example, let's have the following result set: | a | b | | 1 | 2 | I would like to return the following resultset instead (that would contain sum c = a + b) | a |