in reply to Memory leak with DBD::Sybase ?

loop and the database handle is destroyed at the end of the loop

Not really they are still saved in perl's memory for future use.. Perl does not really garbage collect -- you will see that any var that is assigned and then set to undef will actuall stay resident even after its undefed -- perl will then use that same memory when it can for future vars.

-Waswas