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

Home -> Community -> Usenet -> c.d.o.server -> Can wrap encode plain text?

Can wrap encode plain text?

From: Yong Huang <yong321_at_yahoo.com>
Date: 23 May 2002 14:29:20 -0700
Message-ID: <b3cb12d6.0205231329.6f0a4f5e@posting.google.com>


I want to hide plain text in my PL/SQL code. If it's in dbms_out.put[_line] or htp.print, the text won't be "wrapped"; instead there's just a "1" in front of the line. The following test is done on 9i and 8.1.7.2:

$ cat q.sql

create or replace procedure p
is
begin
  dbms_output.put('This is trade secret!'); end;
/

$ wrap iname=q.sql

PL/SQL Wrapper: Release 9.0.1.0.0- Production on Thu May 23 16:20:55 2002

Copyright (c) Oracle Corporation 1993, 2001. All Rights Reserved.

Processing q.sql to q.plb
$ grep "trade secret" q.plb

1This is trade secret!:

Is there a way to encode that text?

Yong Huang Received on Thu May 23 2002 - 16:29:20 CDT

Original text of this message

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