> Hi, i'm working with a table that must have the password field crypted
> in md5 with php, i'm using a 7.3.4-RH Postgresql version, how i can set
> the type of the field?, if the password must have 12 how max length but
> is stored in md5?.
All MD5's are 32 characters in length. You need to have a field of type
VARCHAR(32) to store your encrypted password.
> And is stable the 7.4.2? o r i must wait to the RHDB next release to
> upgrade my postgres?.
7.4.2 is the latest, most stable release.
Chris