also.. i dont want to do anything with user account information inside postgres.
there is a table with the attributes
id SERAIAL PRIMARY KEY,
the_user TEXT NOT NULL,
pass TEXT NOT NULL
now when i say insert . I want it to work like it did with mysql..
INSERT INTO users VALUES(NULL, 'some_user', PASSWORD('his_password'))
password puts an md5 crypt on it.
so you see nothing to do with user accounts on the data base system. just the data in the tables.
Thanks in advance for any help