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 -> Re: pl/sql

Re: pl/sql

From: <ramirez134_at_my-deja.com>
Date: Thu, 18 Jan 2001 12:57:07 GMT
Message-ID: <946p71$94$1@nnrp1.deja.com>

In article <3A66DAF3.3E2375A_at_bill.mts.ru>,   Valery Yourinsky <vsu_at_bill.mts.ru> wrote:
> ramirez134_at_my-deja.com wrote:
> >
> > Where I can find pl/sql examples especially good OWA-packages
> > examples.I am not found them nowhere.
> >
>
> Oracle9i Application Server Using the PL/SQL Gateway
> 5. Using the PL/SQL Web Toolkit
> http://otn.oracle.com/docs/products/ias/doc_index.htm
>
> See also
> http://otn.oracle.com/docs/products/ias/doc_index.htm
>
> Valery Yourinsky
> --
> Oracle8 Certified DBA
>

Could someone explain me how can I do that: I want serch word from line and copy it to the array and print it.
I know that it goes something like that

 CREATE OR REPLACE procedure word_search  AS
 line char(20) := 'that is fine yes it is';  pat char(20) := 'is';
 bacref owa_text.vc_arr;
 BEGIN

  htp.htmlOpen;
  htp.headOpen;
  htp.title('word search');
  htp.headClose;
  htp.bodyopen;

  owa_pattern.match('line','pat','bacref');   htp.bodyClose;
  htp.htmlClose;
 END;  PLEASE HELP Sent via Deja.com
http://www.deja.com/ Received on Thu Jan 18 2001 - 06:57:07 CST

Original text of this message

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