Skip to content

tSQLParamInfo

See Also: Declaring Variables, Struct

Purpose

The [SQLParameterInfo](../VdfClassRef/WebAndWindows/cBaseSQLExecutor-Function-SQLParameterInfo.md) function returns the parameter information for parameterized queries set into an 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 on instantiating struct types.