×
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 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 mailing list archive is Copyright 1997-2025 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.