Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select In retrieval from datawindow

Status
Not open for further replies.

Rottdpogs

IS-IT--Management
Jul 17, 2001
86
0
0
CN
Please Advice.
Im passing a parameter value in datawindow...
ex. select * from sample In ('a','b','c',...)
How can i pass the parameter In ('a','b','c',...) in retrieval arguments of datawindow.
Thanks in advance.
 
Define the retrieval argument as type string array. Store the relevant values in an array and pass that array as the retrieval argument.

a_list[1] = 'a'
a_list[1] = 'b'
a_list[1] = 'c'

dw.Retrieve(a_list[])



RT
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top