in reply to Errors in Code

Some things I found...

Some good node can be found here at the Monastery talking about SQL queries etc here are a few I found interesting

Added: You also might like to change

if (-e "v:/tf_out.txt") { } else { die "File does not exist\n"; }
to something like
unless (-e "v:/tf_out.txt") { die "File does not exist\n"; }

-----
Of all the things I've lost in my life, its my mind I miss the most.