tSQLParamInfo

See Also: Declaring Variables, Struct

 

Purpose

SQLParameterInfo returns the parameter information for parameterized queries set into a array of tSQLParamInfo structs.

Type Declaration

Use tSQLExecutor.pkg

 

Struct tSQLParamInfo

    String sName

    String sValue

End_Struct

 

Struct Members

sName

The parameter name.

sValue

The parameter value.

 

Syntax

Use tSQLExecutor.pkg

:

tSQLParamInfo {variableName}

 

Declaring variables

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.