Re: DBD driver has not implemented the AutoCommit attribute ...



Here is how I got it to work.

I used the old-style connect as follows;

$::my_db = DBI->connect("$db_name:$db_host", $db_user, $db_pass,
"mysql");

But then I also had to comment out the carp in the connect routine in
DBI.pm. I'm sure this is not the best approach but it seems to work
(for now). I would appreciate knowing if there is a more appropriate
way to accomplish this.

I also tried to undef the AutoCommit attribute while using the
new-style connect but I'm sure you already know what happened when I
tried that.

/ron

.



Relevant Pages