This topic has not yet been rated - Rate this topic

StoredProcedureParameter Class

IIS 7.0

Represents a parameter for a stored procedure within a database.

System.Object
  Microsoft.Web.Management.DatabaseManager.StoredProcedureParameter

Namespace:  Microsoft.Web.Management.DatabaseManager
Assembly:  Microsoft.Web.Management.DatabaseManager (in Microsoft.Web.Management.DatabaseManager.dll)
public class StoredProcedureParameter

The StoredProcedureParameter type exposes the following members.

  NameDescription
Public methodStoredProcedureParameterCreates a new instance of the StoredProcedureParameter class.
Top
  NameDescription
Public propertyIsNullReturns a value that indicates whether the parameter for a stored procedure is null.
Public propertyIsOutputParameterReturns a value that indicates whether the parameter for a stored procedure is an output parameter.
Public propertyNameGets or sets the name of the parameter for a stored procedure.
Public propertyTagReturns a generic object that is stored in the StoredProcedureParameter class.
Public propertyTypeInfoGets or sets the type information for a parameter of a stored procedure.
Public propertyValueGets or sets the value of the parameter for a stored procedure.
Top
  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top

Stored procedures are collections of SQL code that execute on the server, and are often used to perform various tasks in place of queries. Parameters are variables that are passed to stored procedures. For example, you could create a stored procedure that performs a query that is based on values that are calculated from parameters that you pass to the stored procedure.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.