in reply to Re: DBI:mysql
in thread DBI:mysql

Ooops... yeah, I should've been disconnecting that first one. I set the trace to level 2 and that is helping somewhat. I did the bind_param on the data...
for (my $i = 1;$i <= $count;++$i) { if ( $values[$i -1] =~ /\d+ ) { $insert00->bind_param($i,$values[$i - 1],SQL_INTEGER); }else{ $insert00->bind_param($i,$values[$i - 1]); }
But I get the same results.