Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have to tmap and merge two integer columns to column in oracle which is string.
row.HourColumn +": " +row.TimeColumn
Pls advice how to convert from int to string.
Hi to convert an int to String you could use this :
String.valueOf(row.HourColumn)
Hi to convert an int to String you could use this :
String.valueOf(row.HourColumn)