http://www.perlmonks.org?node_id=762495


in reply to Can i execute two queries connecting to same DB at a time.

How would we know without seeing your code?

My guess is that Connection is busy with result means that you still have a statement handle open and did not ->finish() it before trying to issue another SQL statement.

Update: Now, actually reading your title, the answer is "no, not with the DBD you're using, it seems".