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



I was thinking the same thing. So when creating the contents of the field, I used RPG's %trim() to drop the extra spaces.

Of course that didn't work since the parmSrchValue field was still the same length and carried its overhead into the SQL. So I tried your suggestion.

STRIP worked!

"Thanks Chuck!" for the solution! And "Thanks Luis!" for playing our game!

Steve

-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx [mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of CRPence
Sent: Friday, May 11, 2012 12:15 PM
To: rpg400-l@xxxxxxxxxxxx
Subject: Re: SQL Cursor return to client issue while using views

On 11 May 2012 07:16, Needles,Stephen J wrote:
I've a program that needs to return an SQL cursor to a .net app.

I've an SQL in an RPG service program that:

<<SNIP>>

I'm stumped.

Sample of SQL within the program:

Exec SQL Declare TABLEget Cursor with return to client for
Select *
from TABLEVW1
where upper(classdesc) like
case when :parmSrchValue<> ' '
and :SearchOnDesc = 'Y'
then :parmSrchValue
else upper(classdesc) end
and upper(classcode) like
case when :parmSrchValue<> ' '
and :SearchOnDesc = 'N'
then :parmSrchValue
else upper(classcode) end;


Spaces are significant in a LIKE predicate. Probably just need to
STRIP(:HV), declare each HF varying, or pad the :HV value with '%'.

Regards, Chuck

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.