Diman
Admin
 Admin
| Posts: 1509 |  | Karma: 20 |
|
RE: TOCIStoredProc and Table%RowType record param
|
|
Posted: 2000/09/04 12:08 |
|
|
|
|
Hi Goran !
TOCIStoredProc generates wrong PL/SQL block, when parameter have unnamed RECORD type, like MyTable%ROWTYPE. That is because OCI limitation. So, in next version NCOCI8 will detect such parameters and raise exception about that. There are workarounds:
- most right way. Use named types, like: create or replace package MyPack is type TMyRec is record ( F1 NUMBER, F2 DATE, .... ); end;
- as allways you can use TOCIQuery.
Probably later i will find solution for this issue.
|
|