in reply to Re: Howto fetch procedure return value
in thread Howto fetch procedure return value

..very true and correct. The 'execute' only submits the query for execution and DBI (only) does some little checking. If the SQL was trying to retrieve from a non-existent table though the die never gets called and your script falls over when trying to read resulting rows. Lookup any DBI book on how to handle errors, and check the DBI error string (can't remember exact var name) in a error trap routine. Chris
  • Comment on Re: Re: Howto fetch procedure return value