Re: [SQL] New Type

2000-05-27 Thread selkovjr
> 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

[SQL] New Type

2000-05-26 Thread Olivier PRENANT
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