in reply to Storing the results of a SQL select query that reutrns more than one row into a perl array

Or why not go for the full monty and explore DBIx::Class? It is more than likely you do not have to store the results in an array at all and you can work with the DBIx::Class' objects to retrieve your data on a "just in time" basis.

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

  • Comment on Re: Storing the results of a SQL select query that reutrns more than one row into a perl array