Re: optRedirectStdout problem

2002-02-08 Thread Cliff Rayman
On Fri, 8 Feb 2002, Gerald Richter wrote: > > SetEnv EMBPERL_OPTIONS optRedirectStdout > > SetEnv EMBPERL_OPTIONS optRawInput > > You have to use the numeric values (16 + 16384) and add them together: > > SetEnv EMBPERL_OPTIONS 16400 it would be cool to be able to do

Re: Moving out of ModPerl in Windows. What changes for EmbPerl?

2002-02-08 Thread Scott Chapman
Will EmbperlObject still work out from under ModPerl? On 8 Feb 2002 at 19:57, Gerald Richter wrote: > > > > I appear to be having some strang problems with ModPerl and caching > > precompiled Perl code. When I change my code, the changes aren't taking > > effect under ModPerl. I'm seeing som

Re: Moving out of ModPerl in Windows. What changes for EmbPerl?

2002-02-08 Thread Gerald Richter
> I appear to be having some strang problems with ModPerl and caching > precompiled Perl code. When I change my code, the changes aren't taking > effect under ModPerl. I'm seeing some very strange behavior. > This is true for all code inside of Perl modules or files which you load with use or

Re: brittleness and apache::dbi

2002-02-08 Thread Gerald Richter
> In my startup.perl, i use a module "db" which does: > > $db = DBIx::Database->new({ > '!DataSource'=>'dbi:mysql:mydatabase', > '!LinkName' => 1, > '!Reconnect' => 1, > }); > > *table1=DBIx::Recordset->Setup({ > '!DataSource'=>$db, > '!Table'=>'mytable', > }); > You can't do this in startup.pl,

Re: brittleness and apache::dbi

2002-02-08 Thread Joshua Spoerri
In my startup.perl, i use a module "db" which does: $db = DBIx::Database->new({ '!DataSource'=>'dbi:mysql:mydatabase', '!LinkName' => 1, '!Reconnect' => 1, }); *table1=DBIx::Recordset->Setup({ '!DataSource'=>$db, '!Table'=>'mytable', }); (and more tables, some with lengthy definitions) Then al

Moving out of ModPerl in Windows. What changes for EmbPerl?

2002-02-08 Thread Scott Chapman
I appear to be having some strang problems with ModPerl and caching precompiled Perl code. When I change my code, the changes aren't taking effect under ModPerl. I'm seeing some very strange behavior. In order to buy me some time on this ModPerl situation (and try to get this project milesto

Re: optRedirectStdout problem

2002-02-08 Thread Gerald Richter
> SetEnv EMBPERL_OPTIONS optRedirectStdout > SetEnv EMBPERL_OPTIONS optRawInput You have to use the numeric values (16 + 16384) and add them together: SetEnv EMBPERL_OPTIONS 16400 Gerald - Gerald Richterecos

Re: brittleness and apache::dbi

2002-02-08 Thread Gerald Richter
> Is there any way I can prevent my entire embperl site from falling apart > when any single page generates sql errors? > Normaly there shouldn't be any problems for other pages then the one that has the error into. At least I never have seen this, also I have sometimes errors in my SQL too. Can

optRedirectStdout problem

2002-02-08 Thread Mikael Stiernström
Hello! I wonder if any of you gurus can help me with this problem. When I looked in the archive I couldn't find any information about this one. When I use the optRedirectStdout option it seems that only stderr will be redirected not stdout. I've got the impression that it would be the other way a