in reply to Why is DBI returning a ref to a ref to a ref to a list? (code)

From the DBI docs:
This utility method combines the prepare, execute, and fetchall_arrayref entries elsewhere in this document into a single call. It returns a reference to an array containing a reference to an array for each row of data fetched.
Your '@rv' should be '$rv'. It is a reference to an array.

Updated:Oops. Correction. and boo_radley beat me to it anyway :(

  • Comment on Re: Why is DBI returning a ref to a ref to a ref to a list? (code)
  • Download Code