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