[PHP] Re: PHP program running from shell ends silently

2003-03-17 Thread Arnold Schommer
ny sign of the program. > How can I know what is happening? Where can I look for the error? > > Thanks a lot! -- Arnold Schommer FS EDV Service & Beratung GmbH An der Pönt 48 40885 Ratingen fon: +49 2102 186 400 fax: +49 2102 186 499 mailto:[EMAIL PROTECTED] http://www.fs-ed

[PHP] Re: variables with ""

2003-03-17 Thread Arnold Schommer
> > ______ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com -- Arnold Schommer FS EDV Service & Beratung GmbH An der Pönt 48 40885 Rati

[PHP] Re: List tables

2003-03-17 Thread Arnold Schommer
n start with something like select table_name, column_name from user_tab_columns hth -- Arnold Schommer FS EDV Service & Beratung GmbH An der Pönt 48 40885 Ratingen fon: +49 2102 186 400 fax: +49 2102 186 499 mailto:[EMAIL PROTECTED] http://www.fs-edv.de -- PHP General

[PHP] Re: Cascading delete in oracle

2003-03-17 Thread Arnold Schommer
stead to clearly see if it's empty. hth Arnold Schommer Raven Eve wrote: > > create table Shop( > ordId NUMBER(7) NOT NULL PRIMARY KEY); > > create table Customer( > ordId NUMBER(7) NOT NULL, > FOREIGN KEY (ordId) REFERENCES Shop(ordId) on delete cascade); > > so