Following the instruction located at:
http://www.enstimac.fr/Perl/perl5.6.1/site_perl/5.6.1/sun4-solaris/DBI/P
urePerl.html#installation
for installing DBI manually to a remote host system, I wrote a small
test script that always seems to fail on the host machine (not on my
intranet box) at the "use DBI;" line:
###########################
#!/usr/bin/perl -w
BEGIN {
print "Content-type: text/html\n\n";
print "Testpoint1<br>";
unshift @INC, 'd:/html/users/shrumnet/html/cgi-bin/lib';
$ENV{DBI_PUREPERL} = 2;
print "Testpoint2<br>";
}
use DBI;
print "Testpoint3<br>";
exit;
###########################
....the results of which are...
###########################
Content-type: text/html Testpoint1
Testpoint2
###########################
As you can see, something is going a bit ary after testpoint2 and before
testpoint3. It's like the script is halting on the use DBI line.
Unfortunately, since this is on IIS there is no error log and any
attempts by me to carpout to a errorlog produces no results so I have
nothing to troubleshoot with.
Any ideas why the script is halting on the use dbi line on the host
machine???
TIA
Sean Shrum
[EMAIL PROTECTED]