dotnetCHARTING Send comments on this topic.
AddParameter Method
See Also 
dotnetCHARTING Namespace > Series Class : AddParameter Method


paramName
paramValue
paramType
Adds a stored procedure when to use in conjunction with StoredProcedure.

Syntax

Visual Basic (Declaration) 
Public Sub AddParameter( _
   ByVal paramName As String, _
   ByVal paramValue As String, _
   ByVal paramType As FieldType _
) 
Visual Basic (Usage)Copy Code
Dim instance As Series
Dim paramName As String
Dim paramValue As String
Dim paramType As FieldType
 
instance.AddParameter(paramName, paramValue, paramType)
C# 
public void AddParameter( 
   string paramName,
   string paramValue,
   FieldType paramType
)

Parameters

paramName
paramValue
paramType

Remarks

This method is optionally used in conjunction with the StoredProcedure property to specify any number of parameters for the stored proc. A number of field types are supported. de.AddParameter("MyParameter","MyValue",FieldType.Text)

See Also

© 2010 All Rights Reserved.