in reply to Re: Sharing a database handle over multiple processes
in thread Sharing a database handle over multiple processes

Apache::DBI states that it creates all its DBI handles after the fork, since DBI handles would overwrite important info since SQL stuff through DBI is keyed off the handle... such as LAST_INSERT_ID and transactions, etc... so I agree with you wholeheartedly

                - Ant

  • Comment on Re: Re: Sharing a database handle over multiple processes