Is there anyway to reuse a statement handle once you've gone through it? In my code I wish to pass the $sth to one function where I pull out all the rows to run some checksums and then later on pass it to another function and pull the rows for other computations.
I mainly need to pass the statement handle so I can call other statement handle methods from it along the way as each function requires, otherwise I'd just drop the data to an $array_ref and pass that around if only values were concerned.