Re: [GENERAL] prob with really simple insert

2004-03-26 Thread Stephan Szabo
On Mon, 22 Mar 2004, marian wrote: > When I do this, > INSERT INTO orgdata ( name, fax, contact, email, phone, address, > preferred ) VALUES ( 'wally', '123456789', 'wally', '[EMAIL PROTECTED]', > '987654321', 'wally way', 'f' ) > > I get > ERROR: query rewritten 100 times, may contain cycles > :

Re: [GENERAL] prob with really simple insert

2004-03-26 Thread scott.marlowe
On Mon, 22 Mar 2004, marian wrote: > When I do this, > INSERT INTO orgdata ( name, fax, contact, email, phone, address, > preferred ) VALUES ( 'wally', '123456789', 'wally', '[EMAIL PROTECTED]', > '987654321', 'wally way', 'f' ) > > I get > ERROR: query rewritten 100 times, may contain cycles

[GENERAL] prob with really simple insert

2004-03-26 Thread marian
When I do this, INSERT INTO orgdata ( name, fax, contact, email, phone, address, preferred ) VALUES ( 'wally', '123456789', 'wally', '[EMAIL PROTECTED]', '987654321', 'wally way', 'f' ) I get ERROR: query rewritten 100 times, may contain cycles : PGRES_FATAL_ERROR What is going on here ---