reusing DBI statement handle

2005-09-23 Thread Manish Sapariya
In following db functions I am using returned statement handle and afterword just ignoring it and overwrite it with the newly returned value. Does this cause memory leak/ or any kind of resouce leak? Can I reuse statement handle in such a way? If not, what is cleaner way to do it?

Re: reusing DBI statement handle

2005-09-23 Thread Jeff 'japhy' Pinyan
On Sep 23, Manish Sapariya said: In following db functions I am using returned statement handle and afterword just ignoring it and overwrite it with the newly returned value. Does this cause memory leak/ or any kind of resouce leak? Can I reuse statement handle in such a way? If not, what is