Re: plsql webtoolkit newbie question
Date: Tue, 25 Jan 2000 05:17:13 GMT
Message-ID: <86jbkm$mmg$1_at_nnrp1.deja.com>
My 2 cents:
My tool SQL PlusPlus (freeware) generates a comprehensive PLSQL package around a given database table using following simple command from SQL Plus:
SQL> EXEC S2.BLDHTM('EMP') This plsql package incldes code to browse, insert, update, delete data from the table using PLSQL web toolkit. An excellent starting point for starting a new app using plsql web toolkit.
regards,
M. Armaghan Saqib
- SQL PlusPlus: Add power to SQL Plus.
- SQL Link for XL: Integrate Oracle with XL.
- Oracle CBT with sample GL (Triggers and Forms Source Code included.
Download free: http://www.geocities.com/armaghan
In article <388D02BD.12F26DA1_at_nospam.yahoo.com>,
tcheram_at_nospam.yahoo.com wrote:
> I have examples and introduction to coding on the Application Server
> at the following:
> http://www.geocities.com/SiliconValley/Peaks/9111/
> I hope this helps......Troy
>
> Immo Wetzel wrote:
>
> > Immo Wetzel wrote:
> >
> > > Hello
> > >
> > > I try to make same webpages with the oracle webserver. and i
> > > would like to generate a procedure which can be called with
> > > or without same parameters like
> > > "host.domain/virtdir/app?test1=hello&test2=newbie"
> > >
> > > i have make the following programm
> > >
> > > PROCEDURE klo(test1 VARCHAR2 DEFAULT NULL,test2 VARCHAR2
> > > DEFAULT NULL) is
> > > BEGIN
> > > htp.htmlopen;
> > > htp.prn(test1||' '||test2);
> > > htp.htmlclose;
> > > END;
> > >
> > > but its generate only a error
> > > OWS-05101: Execution failed due to Oracle error -6550
> >
> > OK it works after a few minutes. Is there a caching system ? how
can i clean the
> > cache if there one ?
> >
> > --
> >
> > Immo Wetzel
> > Fachhochschule Stralsund http://www.fh-stralsund.de
>
>
-- ------------------------------------------------------------------------ * SQL PlusPlus: Add power to SQL Plus. * SQL Link for XL: Integrate Oracle with XL. * Oracle CBT with sample GL (Triggers and Forms Source Code included. Sent via Deja.com http://www.deja.com/ Before you buy.Received on Tue Jan 25 2000 - 06:17:13 CET