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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

topspeed 5.5 to sql anywhere

Status
Not open for further replies.

lotfi

Programmer
Nov 22, 2001
2
TN
on topspeed 5.5 d
filename{prop:sql}='selec sum record as varname'
next(filename)

can i use varname in a topspeed program ?
 
In Clarion a variable has to be bound before it can be used in a query. I guess that the same applies here!

In an Embed at the start of the procedure after opening files, you could enter the following code:
BIND('VarName',VarName)

Then you can use the variable in a string expression or query.

Finally in an Embed at the end of the procedure after closing files, you could enter the following code:
UNBIND('VarName')
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top