Hello,
I am developing a small app that connects to Informix databases, and allows the user to type an SQL statement into a TextBox, and display the results in a DataGridView. This is fine.
However, what I want the user to be able to do is update individual cells in the grid, press update, and update the underlying table.
Hard coding specific update commands is ok, but if the user enters a command in the TextBox along the lines of ....

SELECT name, address FROM table WHERE name = "Joe"

... how would I get it write the appropriate changes to 'table'?