Re: [SQL] Help

2001-03-26 Thread selkovjr
> Instead of "ctrl+z", press ":wq" (colon for command mode, w for write, q for > quit). If you are still mystified, "ctrl+z" stops a process running on a terminal, so it's likely that your vi is still running idle. Type 'fg' on the same terminal to bring it back. For more details on job control,

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