Re: I guess I'm missing something here WRT FOUND

From: Alban Hertroys <dalroi(at)solfertje(dot)student(dot)utwente(dot)nl>
To: Ralph Smith <rsmith(at)10kinfo(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: I guess I'm missing something here WRT FOUND
Date: 2010-11-09 07:51:58
Message-ID: 81888517-AC09-4C57-99EC-4BACABDDAD25@solfertje.student.utwente.nl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 9 Nov 2010, at 5:11, Ralph Smith wrote:

> How is "COLLEEN" not there and there at the same time?

Not really sure what your point is (don't have time to look closely), but...

> IF LENGTH(Word)>0 THEN
> Word2=substring(Word from 1 for 50) ;
> -- PERFORM SELECT COUNT(*) FROM zbus_tokens WHERE token = Word2 ;
> -- IF FOUND THEN
> PERFORM RNotice1(1,''value'',Word2) ; -- line 29
> INSERT INTO zbus_tokens (token) values(Word2);
> J=J+1 ;
> IF J % 100 = 0 THEN
> PERFORM Rnotice2(1,''Row'',I,''Inserts'',J) ;
> END IF ;

> ELSE
> K=K+1 ;
> PERFORM RNotice2(1,''did not'',I,''K'',K) ; -- line 37
> -- END IF ;

You just connected this ELSE block to the IF statement it was nested inside. You probably need to comment out the rest of this ELSE block as well.

> END IF ;

> Again, 7.4 BITES!

Well, 8 is better, but 7.4 was pretty ok. I think you're blaming your own error on the database here ;)

Alban Hertroys

--
Screwing up is an excellent way to attach something to the ceiling.

!DSPAM:737,4cd8fdd810262051411171!

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message AI Rumman 2010-11-09 08:26:08 REINDEX requirement?
Previous Message Arnaud Lesauvage 2010-11-09 07:39:20 Re: Porting from MS Access 2007 to PostgreSQL