Stproc parameterName()
syntax: |
stproc.parameterName(n) |
where: |
n - zero-based integer corresponding to the parameter in the Stproc object. The first parameter is 0, the second is 1, etc. return:
|
return: |
string - the name of parameter n.
|
description: |
This method returns the name of the parameter corresponding to the given index.
|
see: |
#link <sedbc>, Stproc parameters()
|
example: |
// fetch the second parameter name // of the Stproc 'sp' paramName = sp.parameterName( 1 ); |