| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
|  |  | |||
Home -> Community -> Usenet -> c.d.o.misc -> Generalized UPDATE procedure
I'd like to use a generalized UPDATE procedure such as this:
procedure genUpd( key varchar2, aCol varchar2, bCol varchar2) is
rec rowtype%myTable
begin
 select * into rec where keyCol = key for update;
What are the pros and cons of this method?
Thanks
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
Received on Thu Aug 05 1999 - 12:31:04 CDT
|  |  |