Search Results

3
votes

How do I know how many rows a Perl DBI query returns?

Why don't you just "select count(*) ..."?? my ($got_id) = $dbh->selectrow_array("SELECT count(*) from FROM bounce_info WHERE bi_exim_id = '$exid'"); Or to thwar …
0
votes

Why am I not able to query a database from a forked child in Perl?

You are asking for trouble by using the same db handle simultaneously in all of the child processes. You should be creating a new connection in each child. Never mind...I read the rest of t …