.netCHARTING v10.5 Documentation


dotnetCHARTING Namespace > Series Class : AddParameter Method
AddParameter Method (Series)
Adds a stored procedure when to use in conjunction with StoredProcedure.
Syntax
'Declaration
 
Public Sub AddParameter( _
   ByVal paramName As String, _
   ByVal paramValue As String, _
   ByVal paramType As FieldType _
) 
'Usage
 
Dim instance As Series
Dim paramName As String
Dim paramValue As String
Dim paramType As FieldType
 
instance.AddParameter(paramName, paramValue, paramType)
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)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also