home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / DBMS9104.ZIP / ROTI1.APR < prev    next >
Encoding:
Text File  |  1991-02-26  |  471 b   |  20 lines

  1.  
  2. DECLARE
  3.   widget_code CHAR(10);
  4. BEGIN
  5.   SELECT product_code
  6.   INTO   widget_code
  7.   FROM   product
  8.   WHERE  product_name = :widget_name;
  9.   IF SUBSTR(widget_code,1,1) = 'L' THEN
  10.     :widget_direction := 'LEFT-HANDED';
  11.     GO_FIELD('widget_length');
  12.   ELSIF SUBSTR(widget_code,1,1) = 'R' THEN
  13.     :widget_direction := 'RIGHT-HANDED';
  14.     GO_FIELD('widget_height');
  15.   ELSE
  16.     MESSAGE('Bad widget code');
  17.     GO_FIELD('some_other_field');
  18.   END IF;
  19. END;
  20.