> Hi all,
>
> I'm trying to create a type password; the goal is to have a table like:
>
> CREATE TABLE test (
> username varchar,
> pass passwd);
>
> insert into test values ('me','secret');
>
> and have "secret" being automagicly crypted.
>
> What I want is to mimic the PASSWORD function of
Hi all,
I'm trying to create a type password; the goal is to have a table like:
CREATE TABLE test (
username varchar,
pass passwd);
insert into test values ('me','secret');
and have "secret" being automagicly crypted.
What I want is to mimic the PASSWORD function of mysql but much better,
not