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.

SqlParameter::Precision Property

 

Gets or sets the maximum number of digits used to represent the Value property.

Namespace:   System.Data.SqlClient
Assembly:  System.Data (in System.Data.dll)

public:
property unsigned char Precision {
	virtual unsigned char get() sealed;
	virtual void set(unsigned char value) sealed;
}

Property Value

Type: System::Byte

The maximum number of digits used to represent the Value property. The default value is 0. This indicates that the data provider sets the precision for Value.

The Precision property is used by parameters that have a SqlDbType of Decimal.

You do not need to specify values for the Precision and Scale properties for input parameters, as they can be inferred from the parameter value. Precision and Scale are required for output parameters and for scenarios where you need to specify complete metadata for a parameter without indicating a value, such as specifying a null value with a specific precision and scale.

System_CAPS_noteNote

Use of this property to coerce data passed to the database is not supported. To round, truncate, or otherwise coerce data before passing it to the database, use the Math class that is part of the System namespace prior to assigning a value to the parameter's Value property.

System_CAPS_noteNote

  Microsoft .NET Framework data providers that are included with the .NET Framework version 1.0 do not verify the Precision or Scale of Decimal parameter values. This can cause truncated data being inserted at the data source. If you are using .NET Framework version 1.0, validate the Precision and Scale of Decimal values before setting the parameter value. When you use .NET Framework version 1.1 or a later version, an exception is thrown if a Decimal parameter value is set with an invalid Precision. Scale values that exceed the Decimal parameter scale are still truncated.

The following example creates a SqlParameter and sets some of its properties.

No code example is currently available or this language may not be supported.

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