Re: embperl and use module

2001-08-27 Thread Gerald Richter
> I call out show. But how can I add $req (mySQL support to wwwmodule.pl)? > (I mean - how can I make a $req->{dbh}->quote("quoteme"); in > wwwmodule.pl...) If you are using EmbperlObject you can use the EMBPERL_OBJECT_HANDLER_CLASS directive to make $req a derived class from your class Is this

embperl and use module

2001-08-25 Thread Jaak
Hi, I have another problem :-( In test.html --- [- $req = shift; $obj = $req->{obj}; -] [+ $obj->show("hello", "quoteme"); +] --- where $req - is mySQL DBI and $obj is wwwmodule.pm I call out show. But how can I add $req (mySQL support to wwwmodule.pl)? (I mean - how can I make a $req->{dbh}->q