TDL Procedures are different from the procedures/functions used in other programming languages. A TDL proceedure is basically a collection of SQL-Columns that is returned to the calling program.
To create a Procedure, you define a Collection that starts with an underscore. Next, SQLValues attribute defines the columns that you require to be returned to the calling program.
Download TDL29
;; PRODUCT: TDL29.TXT |
Notes:-
1) SQLValues is an attribute that can be used with Collection
definition
2) SQLValues requires TWO parameters
1st Parameter : Column Name
2nd Parameter : Column Value (usually this is a Method/Field Name)
3) Procedures can be invoked using SQLRequest() function of RTSlink DLL
as given below:
Syntax:-
SQLRequest("Call _MyVouchers")
4) For more information on how to use the SQLRequest() function, refer link www.rtslink.com