Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Parameter::DbType Property

 

Gets or sets the database type of the parameter.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
property DbType DbType {
	DbType get();
	void set(DbType value);
}

Property Value

Type: System.Data::DbType

The database type of the Parameter instance. The default value is Object.

Exception Condition
ArgumentOutOfRangeException

An attempt was made to set this property to a value that is not in the DbType enumeration.

The database type can be used to create strongly typed parameters, so that values are converted correctly between your Web application and underlying code or values from database tables.

If the database type of the parameter is changed by setting the DbType property, the OnParameterChanged method is called.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft