Dymanic updation query.
I have an output displayed in the GUI.
The output is a row from the database.
I make a change in my Java application that affects this row and I would like
to display this change dynamically to the output displayed
What is a better option for doing the above?
1.Delete the row being shown,save the new row with the changes in the database,and re display it?
2.Or,Update the row dynamically and refresh?
How can the row be refreshed dynamically?
Any suggestions.

