Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Record and Raw types

Record and Raw types

From: schw <schwartz_at_alpha.net.pl>
Date: 24 Apr 2006 07:29:20 -0700
Message-ID: <1145888960.709698.23870@t31g2000cwb.googlegroups.com>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US