Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Record and Raw types
HI
I've got a simple structure like the following:
DECLARE TYPE LOGON_PACKET IS RECORD(
szUsername CHAR(256), szPwdEnc CHAR(256));
logonPKT LOGON_PACKET;
and when I call
ret_val := utl_tcp.write_raw(c,logonPKT);
I get type mismatch error because logonPKT is not a raw type. what shall i do?
best regards, Received on Mon Apr 24 2006 - 09:29:20 CDT
![]() |
![]() |