i already try resultset, i can't update resultset without update the database
i use 2 commands to update resultset
resultset.updateString(index,string) and resultset.updateRow()
with those command both of resultset and database get updated.
// BIG PROCESS begin
process a begin
get data from database process
save result to resultset end process a
process b begin
get data from resultset(which is process a result) process
save result to resultset end process b
next process ....
///BIG PROCESS end
save data to database
can i do like that with resultset. if i can, how?
thanks