SqlParameter.ResetSqlDbType 方法
定义
重置与此 SqlParameter 关联的类型。Resets the type associated with this SqlParameter.
public:
void ResetSqlDbType();
public void ResetSqlDbType ();
member this.ResetSqlDbType : unit -> unit
Public Sub ResetSqlDbType ()
注解
当执行包含参数值的命令时,代码可以显式设置参数的类型,或者该参数可以从其值推断其类型。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. 调用此方法会影响的 DbType 和 SqlDbType 属性 SqlParameter 。Calling this method affects both the DbType and SqlDbType properties of the SqlParameter.