Still not talking!

2001-05-21 Thread Jonathan M. Hollin
Okay... Rebooting the computer made no difference whatsoever. So I built a minimal script as follows: #!perl print (Content-type: text/html\n\n); use strict; use vars qw($query $dsn $driver $db_username $db_password $dbh); require 5.006; $| = 1; ($0 =~ m,(.*)/[^/]+,) unshift (@INC, $1);

RE: Still not talking!

2001-05-21 Thread Jason Bodnar
$db_username = ; $db_password = ; warn Before DBI-connect(): [$$]; $dbh = DBI-connect($dsn, $db_username, $db_password, {'RaiseError' = 1}) or die sprintf Error: %s.\n, DBI-errstr; You're probably not getting your error message because you have RaiseError on. From the DBI

RE: Still not talking!

2001-05-21 Thread Jonathan M. Hollin
:: You're probably not getting your error message because you have :: RaiseError on. Have corrected that - but the results haven't changed in any way. Kindest regards, Jonathan M. Hollin Digital-Word.com

RE: Still not talking!

2001-05-21 Thread Guido Moonen
of localhost. Greetings Guido Moonen -Original Message- From: Jonathan M. Hollin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 22, 2001 3:38 AM To: [EMAIL PROTECTED] Subject: Still not talking! Okay... Rebooting the computer made no difference whatsoever. So I built