in reply to how can Multiple Insert in Perl to mysql with php

I'm sure the problem is in line 42 of your script. Oh, wait...

Since you haven't provided any useful details nor any code, we can't tell you what's wrong. But on a general note, if you need to make multiple insertions into a database safe against multi tasking, you should wrap them in a common transaction. DBI has support for transactions, and mysql has too, if you use InnoDB as the storage engine.

  • Comment on Re: how can Multiple Insert in Perl to mysql with php