maybe not the 100% correct list, but then again...

-------------------------------- SCRIPT
----------------------------------------------------------------------------
-----

#!/usr/bin/perl -w
use DBI;

my $dbh = DBI->connect( "DBI:mysql:database=xxx", "xxx", "xxx" )
    or die( "Cannot connect to DB\n" );

my $sth = DBI->do( "INSERT INTO mytable VALUES (2,'some text')" );

$dbh->disconnect
    or warn( "Disconnection failed: $DBI::errstr\n" );

exit;

---------------------------- ERROR MESSAGE ---------------------------
Can't locate auto/DBI/do.al in @INC (@INC contains:
/usr/lib/perl5/5.6.0/i386-linux /usr/lib/perl5/5.6.0
/usr/lib/perl5/site_perl/5.6.0/i386-linux /usr/lib/perl5/site_perl/5.6.0
/usr/lib/perl5/site_perl .) at ./tst.pl line 7

------ OTHER INFORMATION -----------------------------------------------
Linux, distribution Redhat 7.0
DBI.1.20
DBD-mysql-2.0902
perl v5.6.0

anyone experienced a similar problem?
grateful for any information whatsoever...

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to