Hi,
I'm trying to update a column in a database, but the column needs to be specified at runtime. For example, given the table:
| PKEY | ColumnA | ColumnB | ColumnC |
I want to write an stored procedure that will update a given column per PKEY. Such as:
updateColumn(pkey, columnName, Value);
This could easily be done using java/JDBC etc, but this needs to be a stored procedure.
also, its an Oracle database