i know "password" can be used in creating/altering user
information (as used via GRANT and REVOKE) but is there any
facility within postgres to CRYPT() a value?

        create rule new_folk as on insert to view_folk do instead
                insert into folk_table
                        (created,login,password)
                        values
                        (current_timestamp,new.login,CRYPT(new.password))
                        ;

or must this be done (say, in perl) before postgres sees it?

-- 
[EMAIL PROTECTED]
http://sourceforge.net/projects/newbiedoc -- we need your brain!
http://www.dontUthink.com/ -- your brain needs us!

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Reply via email to