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



On Wed, 31 Mar 2004, Bob Cozzi wrote:

> Look at the PREPARE and DECLARE SQL statements. They will do what you want.

That's exactly what I've been looking at.  Everything that I've tried
doesn't work.  I'll post some actual code so maybe someone will point out
where I'm being stupid.

C                   if        (SHVNDNAME = *blanks)
C                   eval      sqlstatement = 'SELECT POHDRP.POCOMP#,' +
C                                     'POHDRP.POLOC#,POHDRP.POPO#,' +
C                                     'POHDRP.POPOSUF,POHDRP.POWO#,' +
C                                     'POHDRP.POPODATE,POHDRP.POSUPNAME '+
C                                     'FROM POHDRP ' +
C                                     'WHERE POHDRP.POPO# >= ' +
C                                     %trim(%editc(SHPO#:'3')) + ' ' +
C                                     'AND POHDRP.POCOMP# IN (' +
C                                     %trim(%editc(co#0:'3')) + ',' +
C                                     %trim(%editc(co#1:'3')) + ',' +
C                                     %trim(%editc(co#2:'3')) + ') ' +
C                                     'ORDER BY POHDRP.POCOMP#,' +
C                                     'POHDRP.POLOC#,POHDRP.POPO#,' +
C                                     'POHDRP.POPOSUF'
C*
C                   else
C                   eval      sqlstatement = 'SELECT POHDRP.POCOMP#,' +
C                                     'POHDRP.POLOC#,POHDRP.POPO#,' +
C                                     'POHDRP.POPOSUF,POHDRP.POWO#,' +
C                                     'POHDRP.POPODATE,VENDORP.VMNAME ' +
C                                     'FROM POHDRP,VENDORP ' +
C                                     'WHERE POHDRP.POPO# >= ' +
C                                     %trim(%editc(SHPO#:'3')) + ' ' +
C                                   'VENDORP.VMVNDRID=POHDRP.POSUPPLIER'+
C                                     ' AND VENDORP.VMNAME LIKE ' +
C                                     searchvnd + ' ' +
C                                     'AND POHDRP.POCOMP# IN (' +
C                                     %trim(%editc(co#0:'3')) + ',' +
C                                     %trim(%editc(co#1:'3')) + ',' +
C                                     %trim(%editc(co#2:'3')) + ') ' +
C                                     'ORDER BY POHDRP.POCOMP#,' +
C                                     'POHDRP.POLOC#,POHDRP.POPO#,' +
C                                     'POHDRP.POPOSUF'
C                   endif
C*
C/EXEC SQL
C+ PREPARE S1 FROM :sqlstatement
C/END-EXEC
C/EXEC SQL
C+ DECLARE C1 CURSOR FOR S1
C/END-EXEC
C/EXEC SQL
C+ OPEN C1
C/END-EXEC

Notice that the difference between the two if conditions is that the first
does use the vendor name and part of the selection criteria and the second
does (as well and joining with another file).  When I run this it does
work.  I tried putting the PREPARE statement inside the if conditionals
and that doesn't work, either.

I don't want to just have variables in the select statement (like using
:variablename for instance) but I want to dynamically change the entire
sql statement.

This is a piece of cake with C and MySQL:

if (condition)
{
        sprintf (query,
        "SELECT custnum,description FROM todolistheader WHERE id = %d",
        job_id);
}
else
{
        sprintf (query,
        "SELECT name, nickname FROM customerlist WHERE id = %d",
        cust_id);
}

mysql_query (&mysql, query);

Can RPG with SQL really be that much harder?  Am I just being stupid?

James Rich

Zvpebfbsg vf abg gur nafjre.
Zvpebfbsg vf gur dhrfgvba.
AB (be Yvahk) vf gur nafjre.
        -- Gnxra sebz n .fvtangher sebz fbzrbar sebz gur HX, fbhepr haxabja

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.