in reply to Re: PostgreSQL UPDATE
in thread PostgreSQL UPDATE

Forgot the filter code. All three of these are contained in common.sub
#################################### ### Filter - Gets rid of ### ### characters that screw up the ### ### program. ### #################################### sub filter{ $_[0]=~s/\'/\\\'/g; return $_[0]; } # End of filter subroutine ################################################################# 1; # Required or won't work!