MamaLoca
Programmer
- Aug 29, 2005
- 48
I want to learn how to connect and use MySQL from my PERL scripts
I fount a script to test and see if DBI is supported/installed on my webhosts server at
CHMOD is set 755
it is "SUPPOSED" to do one of two things
If it's NOT there
"Can't locate DBI.pm in @INC (@INC contains: [filepath info, blah, blah, blah])
BEGIN failed--compilation aborted at test_dbi.pl line 4."
If it's IS
"Here's a list of DBI drivers:
ADO
ExampleP
Multiplex
Proxy
mysql"
But I get a 500 Internal Server Error
NOW
My host says
"You can upload your Dbi.pl script in the 'cgi-bin' folder under your domain, as it is supported on the server and have the connections to your MySQL database."
But being a clueless newb I have no idea were to look to find out what to do next.
I also don't seem to be able to telnet to my server. It may be I'm doing something wrong with this as well. I have an email to my host about this.
Life would be so much easier if I only had the source code.
I fount a script to test and see if DBI is supported/installed on my webhosts server at
Code:
#! /usr/bin/perl -w
use strict;
use DBI;
print "Here's a list of DBI drivers:\n";
my @available_drivers = DBI->available_drivers('quiet');
my $driver;
foreach $driver (@available_drivers)
{
print "$driver\n";
}
CHMOD is set 755
it is "SUPPOSED" to do one of two things
If it's NOT there
"Can't locate DBI.pm in @INC (@INC contains: [filepath info, blah, blah, blah])
BEGIN failed--compilation aborted at test_dbi.pl line 4."
If it's IS
"Here's a list of DBI drivers:
ADO
ExampleP
Multiplex
Proxy
mysql"
But I get a 500 Internal Server Error
NOW
My host says
"You can upload your Dbi.pl script in the 'cgi-bin' folder under your domain, as it is supported on the server and have the connections to your MySQL database."
But being a clueless newb I have no idea were to look to find out what to do next.
I also don't seem to be able to telnet to my server. It may be I'm doing something wrong with this as well. I have an email to my host about this.
Life would be so much easier if I only had the source code.