SqlParameter.ResetDbType Method

Definition

Resets the type associated with this SqlParameter.

public:
 override void ResetDbType();
public override void ResetDbType ();
override this.ResetDbType : unit -> unit
Public Overrides Sub ResetDbType ()

Remarks

When executing a command that includes parameter values, code can either set the type of a parameter explicitly, or the parameter can infer its type from its value. Calling this method resets the parameter so that it can again infer its type from the value passed in the parameter. Calling this method affects both the DbType and SqlDbType properties of the SqlParameter.

Applies to

See also