I am developing an application where my app will get data from some other source in delimited format (raw data), then I need to convert the raw data to either resultset or cachedrowset, then I will pass the constructed resulset / cachedrowset to the client app (which calls my app to get data).
I've previously developed a .Net
app which can achievethis by using DataTable
(data constructed without connection).
However, I do not know how to achieve this in Java. Can anyone help?