Hello

 I wrote simple Apache::ASP page
-------
<HTML>
<BODY>
<%
use DBI;
use DBD::Informix;

my $dbh = DBI->connect("DBI:Informix:\@server", "", "",{ PrintError =>
0, AutoCommit => 1, });
my $rc=$dbh->disconnect;
%>
</BODY>
</HTML>
-------

This page (perl asp script) work fine, but only first time on apache
child process.
Second attemp to run this script cause segmentation fault of child
apache process.
When main apache process then create new child, all is OK, but only for
one script run again,
and so on.

What is wrong?

I run perl 5.6.1 without thread on AIX 4.3, apache 1.3.20  mod_perl/1.26

Thank


Reply via email to