On Thu, 29 Dec 2005, Ted Byers wrote: > I have just encountered another problem. I am not sure if it is with my > code, or with how I am working with Postgres/pgAdmin III. > > Here is another function, as created using the wizard/dialog box in pgAmin III for creating functions: > > CREATE FUNCTION "People".get_pw(ea "varchar") RETURNS "varchar" AS > $BODY$ > SELECT pword FROM "People".uids WHERE email_address = ea; > $BODY$ > LANGUAGE 'sql' VOLATILE; > > When I click <OK> to indicate that I am finished, I get an error message > saying there is no column called "ea". Of course I know that; that is > because it is a function parameter instead.