Re: Syntax error due to C++ comment in epio.c

2001-10-16 Thread Gerald Richter
> > epio.c does have a C++ comment: > > > > ... > > This is easily fixed, but these comments should not be in CVS. > > > > http://perl.apache.org/embperl/CVS.pod.1.html says: > > ... the Embperl code pulled from CVS is not guaranteed to do anything, > especially not compile or work. > > Most

Re: EMBPERL_MAIL_ERRORS_TO sends multiple emails?

2001-10-16 Thread Gerald Richter
> > > getting it ready to go live and played with EMBPERL_MAIL_ERRORS_TO > > > Everything now works great, except that I'm getting 3 copies of > > every error email. Has anyone else experienced this? The emails have > > different message IDs and all are sent one after the other. > > Right,

Re: $fields versus !fields

2001-10-16 Thread Gerald Richter
> > $fdat{'!fields'} = 'Distinct Batchnum'; This must be !Fields instead of !fields then it should work > - ignores the "distinct" phrase. > $fdat{'$fields'} = 'Distinct Batchnum'; > - produces NO results although according to debug log query is executed. > This is strange. I

Syntax error due to C++ comment in epio.c

2001-10-16 Thread Jens-Uwe Mager
epio.c does have a C++ comment: xlc -c -I/local/src/pd/apache/apache_1.3.22/src/include -I/local/src/pd/apache/apache_1.3.22/src/regex -I/local/src/pd/apache/apache_1.3.22/src/os/unix -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE -qmaxmem=8192 -I/usr/local/include -O -DVERSION=\"1.3.4_dev-4\"

$fields versus !fields

2001-10-16 Thread Jack Knight
Hi, My database table contains many records with the same value for the field "batchnum", and I want to extract the batch numbers and list them in an HTML table. SELECT * ... will give me thousands of records, which I don't want. SELECT DISTINCT Batchnum gives the correct result, but I cannot se