Re: [SQL] new rule syntax?

2006-02-06 Thread Richard Huxton
A. R. Van Hook wrote: I have two tables defined as: checks (ckidint NOT null PRIMARY KEY, payto text, notes text, ckdate date, printed int default 0, tdate timestamp

Re: [SQL] new rule syntax?

2006-02-05 Thread Jim Buttafuoco
6 15:10:23 +0200 Subject: Re: [SQL] new rule syntax? [UTF-8?]> A. R. Van Hook написа: > > I have two tables defined as: > > checks > >(ckidint NOT null PRIMARY KEY, > > payto text, > > notes

Re: [SQL] new rule syntax?

2006-02-05 Thread Milen A. Radev
A. R. Van Hook написа: I have two tables defined as: checks (ckidint NOT null PRIMARY KEY, payto text, notes text, ckdate date, printed int default 0, tdate timestamp

Re: [SQL] new rule syntax?

2006-02-05 Thread A. Kretschmer
am 05.02.2006, um 6:00:18 -0600 mailte A. R. Van Hook folgendes: > in previous versions (<8.1) the following rule declaration seemed to work > fine > create rule checks_d0 as > on delete to checks > do delete from checkitems >where ckid = checks.ckid; > in 8.1.2 I get >

[SQL] new rule syntax?

2006-02-05 Thread A. R. Van Hook
I have two tables defined as: checks (ckidint NOT null PRIMARY KEY, payto text, notes text, ckdate date, printed int default 0, tdate timestamp not null) checkitems