Re: [gentoo-dev] DBD-mysql select failures with MySQL 4.1

2005-06-27 Thread Francesco R
Anthony Gorecki wrote: On Sunday, June 26, 2005 9:28 pm, Zac Medico wrote: Have you checked the DBI error status? See the parts about $DBI::err, $DBI::errstr, and RaiseError here: In all cases, DBI::err() returns undefined, indicating no error. It's quite perplexing. Maybe we

Re: [gentoo-dev] DBD-mysql select failures with MySQL 4.1

2005-06-27 Thread Anthony Gorecki
On Sunday, June 26, 2005 11:24 pm, Francesco R wrote: Going to give some hints where to search the source of the error, Thanks for the suggestions; unfortunately, I've already remerged DBI, DBD-mysql and PERL. In addition, I've also tried restarting MySQL and spent at least three hours delving

Re: [gentoo-dev] DBD-mysql select failures with MySQL 4.1

2005-06-27 Thread Michael Cummings
Take this to [EMAIL PROTECTED] (I'm just getting back from vacation, real responses delayed until we finish getting everything back in order at the house). First recommendation is of course, don't try to assign something to $_ directly, but maybe that's just my personal take (I'd have used

[gentoo-dev] DBD-mysql select failures with MySQL 4.1

2005-06-26 Thread Anthony Gorecki
Hello, I've been encountering an unusual string of errors while attempting to retrieve information from a database using DBD-mysql-2.9007 and mysql-4.1.12. The database in question is of type InnoDB. Below is an example: #!/usr/bin/perl -w use strict; use DBI; my $db_conn =

Re: [gentoo-dev] DBD-mysql select failures with MySQL 4.1

2005-06-26 Thread Zac Medico
Anthony Gorecki wrote: Hello, I've been encountering an unusual string of errors while attempting to retrieve information from a database using DBD-mysql-2.9007 and mysql-4.1.12. The database in question is of type InnoDB. Below is an example: #!/usr/bin/perl -w use strict; use DBI;