× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Was your comparison a varying length string?

select * from rob/myfilex
ABC
A
B
end of data

     D count           S              5B 0
     d test1           s              5a
     d test2           s              1a
     d test3           s              5a   varying
     d response        s              1a

      /free
       test1='A';
       count=*zeros;
      /end-free

     C/EXEC SQL
     C+ SELECT COUNT(*) INTO :count
     C+ FROM myfilex
     C+ WHERE mychar like :test1 || '%'
     C/END-EXEC
      /free
       dsply 'test1 concat %';
       dsply sqlstt;
       dsply count ' ' response;
       test1='A%';
       count=*zeros;
      /end-free
     C/EXEC SQL
     C+ SELECT COUNT(*) INTO :count
     C+ FROM myfilex
     C+ WHERE mychar like :test1
     C/END-EXEC
      /free
       dsply 'test1%';
       dsply sqlstt;
       dsply count ' ' response;
       test2='A';
       count=*zeros;
      /end-free
     C/EXEC SQL
     C+ SELECT COUNT(*) INTO :count
     C+ FROM myfilex
     C+ WHERE mychar like :test2 || '%'
     C/END-EXEC
      /free
       dsply 'test2 concat %';
       dsply sqlstt;
       dsply count ' ' response;
       test3='A';
       count=*zeros;
      /end-free
     C/EXEC SQL
     C+ SELECT COUNT(*) INTO :count
     C+ FROM myfilex
     C+ WHERE mychar like :test3 || '%'
     C/END-EXEC
      /free
       dsply 'test3 concat %';
       dsply sqlstt;
       dsply count ' ' response;
       *inlr=*on;
      /end-free

DSPLY  test1 concat %
DSPLY  00000 
DSPLY      1 

DSPLY  test1%
DSPLY  00000 
DSPLY      1 

DSPLY  test2 concat %
DSPLY  00000 
DSPLY      2 

DSPLY  test3 concat %
DSPLY  00000 
DSPLY      2 

Rob Berendt
-- 
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.