StoredProcedureParameter Class
IIS 7.0
Represents a parameter for a stored procedure within a database.
Namespace:
Microsoft.Web.Management.DatabaseManager
Assembly: Microsoft.Web.Management.DatabaseManager (in Microsoft.Web.Management.DatabaseManager.dll)
The StoredProcedureParameter type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | StoredProcedureParameter | Creates a new instance of the StoredProcedureParameter class. |
| Name | Description | |
|---|---|---|
![]() | IsNull | Returns a value that indicates whether the parameter for a stored procedure is null. |
![]() | IsOutputParameter | Returns a value that indicates whether the parameter for a stored procedure is an output parameter. |
![]() | Name | Gets or sets the name of the parameter for a stored procedure. |
![]() | Tag | Returns a generic object that is stored in the StoredProcedureParameter class. |
![]() | TypeInfo | Gets or sets the type information for a parameter of a stored procedure. |
![]() | Value | Gets or sets the value of the parameter for a stored procedure. |
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.
