MySQL Forums
Forum List  »  Perl

A simple mysql->connect problem
Posted by: Jonathan Freese
Date: February 09, 2006 08:11AM

This perl script:
#!/bin/perl -w
#

use DBI;
print "DBI::VERSION: $DBI::VERSION\n";
use DBD::mysql;
print "DBD::mysql::VERSION: " . $DBD::mysql::VERSION . "\n";

$host="localhost";
$database="mysql";
$user="root";
$password="myrootpassword";

$db=mysql->connect($host, $database, $user, $password);

produces the following result:
DBI::VERSION: 1.40
DBD::mysql::VERSION: 2.9003
Can't locate object method "connect" via package "mysql" (perhaps you forgot to load "mysql"?) at ./tester.prl line 14.

What am I doing wrong?

Options: ReplyQuote


Subject
Written By
Posted
A simple mysql->connect problem
February 09, 2006 08:11AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.