× 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.



If I were doing this, I might do it this way:

D myStatement S 4096 Varying


myStatement = 'SELECT CMCSNAME, CMADDR1, CMCITY, CMCST#6, CMCST#3 '
+ 'FROM CUSTML1 '
+ 'WHERE (CMCSNAME>=:SHCSNAME) AND CMCSNAME LIKE '''
+ csgrpkwda + '''' ;
If SHCO# <> 0 ;
myStatement += ' AND (CMSRVCO#=' + %Char(SHCO#) ;
myStmt += ' AND CMDEL<>''D'') '
+ 'ORDER BY CMCSNAME;
Exec SQL PREPARE cursorStmt from :myStatement ;
Exec SQL DECLARE CURSOR C1 FOR cursorStmt ;

But more likely, I would do:

C/EXEC SQL DECLARE C1 CURSOR FOR
C+ SELECT CMCSNAME, CMADDR1, CMCITY, CMCST#6, CMCST#3 FROM
C+ CUSTML1 WHERE (CMCSNAME>=:SHCSNAME) AND CMCSNAME LIKE
C+ :csgrpkwda AND (:SHCO#=0 OR CMSRVCO#=:SHCO#) and
C+ CMDEL<>'D' ORDER BY CMCSNAME
C/END-EXEC



Dennis Lovelady
http://www.linkedin.com/in/dennislovelady
--
Be careful about reading health books. You may die of a misprint.
-- Mark Twain

Just call your second cursor C2.
Or you could change your SQL statement Where clasue to take into account
your condition.

2.C/EXEC SQL DECLARE C1 CURSOR FOR
3.C+ SELECT CMCSNAME, CMADDR1, CMCITY, CMCST#6, CMCST#3 FROM
4.C+ CUSTML1 WHERE (CMCSNAME>=:SHCSNAME) AND CMCSNAME LIKE
5.C+ :csgrpkwda AND (CASE WHEN :SHC0# <> 0 THEN CMSRVCO#=:SHCO# ELSE END
and
6.C+ CMDEL<>'D') ORDER BY CMCSNAME
7.C/END-EXEC

-Tom Stieger
IT Manager
California Fine Wire

-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of James Rich
Sent: Friday, October 28, 2011 12:05 PM
To: midrange-l
Subject: SQL RPG question

I need to create one of two SQL statements conditionally, but when I try
to compile the source the compiler errors with:

SQL0051 30 289 Position 25 Cursor or procedure C1 previously
declared.

The source I'm working with is at:

http://code.midrange.com/37665d27b6.html

How do I conditionally create these SQL statements?

James Rich

if you want to understand why that is, there are many good books on the
design of operating systems. please pass them along to redmond when
you're done reading them :)
- Paul Davis on ardour-dev
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
list To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at http://archive.midrange.com/midrange-l.

--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
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.