Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> passing several columns into single array using RETURNING clause in java
Hi!
How can I pass several column into single array using RETURNING clause in Java?
The statement would have to be following:
update table set status = 'X'
where status 'Y'
returning rowid, col1, col2, col3 into :array;
The update will update several rows at a time...
I need an example, how can I return all those 4 columns to a single array on Java client, not 4 different ones?
Can it be done using JDBC thin drivers?
Tanel.
![]() |
![]() |