See Also: Declaring Variables, Struct
SQLParameterInfo returns the parameter information for parameterized queries set into a array of tSQLParamInfo structs.
Use tSQLExecutor.pkg
Struct tSQLParamInfo
String sName
String sValue
End_Struct
sName
The parameter name.
sValue
The parameter value.
Use tSQLExecutor.pkg
:
tSQLParamInfo {variableName}
To declare tSQLParamInfo variables, use the name of the type (tSQLParamInfo) followed by the variable name.
tSQLParamInfo MySQLParamInfo
See struct variables for more details of instantiating struct types.