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



Sometimes the obvious is not so obvious. I think I had just had
tunnelvision for trying to use parameter markers.
Makes perfect sense.

Michael Smith
iSeries.mySeries.


-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of
Peter.Colpaert@xxxxxxxxx
Sent: Wednesday, August 01, 2007 10:00 AM
To: RPG programming on the AS400 / iSeries
Subject: Re: Embedded sql and parameter markers


Mike,

Since you're already creating the select statement dynamically, why not
use the filename variable in your eval statement?

C Eval sel ='Select * from ' +
%trim(filename)
+
C ' where srcdta like(' + q +
C '%226%' + q + ')' +
C ' or srcdta like(' + q +
C '%550%' + q +') ' +
C ' or srcdta like(' + q +
C '%530%' + q + ') ' +
C ' or srcdta like(' + q +
C '%150%' + q + ') ' +
C ' or srcdta like(' + q +
C '%bytes transferred%' + q + ')

HTH,

Peter Colpaert
Application Developer
PLI - IT - Kontich, Belgium
-----
Yoda of Borg are we. Futile is resistance, assimilated will you be.
-----



"Smith, Mike" <Mike_Smith@xxxxxxxxxxxxxxxx>
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
01/08/2007 15:51
Please respond to
RPG programming on the AS400 / iSeries <rpg400-l@xxxxxxxxxxxx>


To
<rpg400-l@xxxxxxxxxxxx>
cc

Subject
Embedded sql and parameter markers






I am trying to write an sql program that receives a file name as a parm.
I am trying to do a dynamic sql statement with a Parameter marker for
the filename. I keep getting a '? Token not valid'.

Is it possible to use a parmameter marker for the filename. I haven't
been able to find anything online or in my sql books that tells me.

Here is my sql statements.

C Eval sel ='Select * from ? ' +
C ' where srcdta like(' + q +
C '%226%' + q + ')' +
C ' or srcdta like(' + q +
C '%550%' + q +') ' +
C ' or srcdta like(' + q +
C '%530%' + q + ') ' +
C ' or srcdta like(' + q +
C '%150%' + q + ') ' +
C ' or srcdta like(' + q +
C '%bytes transferred%' + q + ')
'
C/EXEC SQL
C+ PREPARE #SEL FROM :sel
C/END-EXEC
C/EXEC SQL
C+ Declare CTLCURS SCROLL Cursor For #SEL
C/END-EXEC
C/EXEC SQL
C+ Open Ctlcurs using :filename
C/END-EXEC


Thanks
Michael Smith



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.