in reply to Re: (mysql) failing to locate object method
in thread (mysql) failing to locate object method
hi Gilimanjaro
after doing modifications said by u only one error i am getting, the coding is as follows :==>
use strict; use warnings; use DBI; # Here's how to include the DBI module my $dbh; my $db = 'myfirstdatabase'; my $db_user = 'RAM'; my $db_password = ''; # Connect to the requested server $dbh = DBI->connect("dbi:mysql:$db","$db_user", "$db_password",{Rai +seError => 0, PrintError => 0} ) or err_trap("Cannot connect to the d +atabase"); my $sql; my $sth; my $td; $sql = "SELECT max(unxtmstmp) FROM logfl"; $sth=$dbh->prepare($sql) or die "preparing: ",$dbh->errstr; $sth->execute or die "executing: ", $dbh->errstr; $td = $sth->fetchrow_array; print "$td";
==================================================
The error which i am getting when i run the above program is
C:\ram>perl timeinblt.pl Can't locate object method "connect" via package "DBI" (perhaps you fo +rgot to load "DBI"?) at timeinblt.pl line 14. C:\ram>
the line no. 14 is
$dbh = DBI->connect("dbi:mysql:$db","$db_user", "$db_password",{RaiseError => 0, PrintError => 0} ) or err_trap("Cannot connect to the database");Edited 3 Aug 2004, by footpad: Converted <br> tags to <P> tags and added <code> tags.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: (mysql) failing to locate object method
by Gilimanjaro (Hermit) on Aug 03, 2004 at 11:54 UTC | |
by sriraj (Initiate) on Aug 03, 2004 at 12:16 UTC | |
by Gilimanjaro (Hermit) on Aug 03, 2004 at 12:58 UTC |