ADO CreateParameter 方法

The CreateParameter method creates and returns a Parameter object containing the specified properties like name, type, direction, size, and value.
CreateParameter的作用是:创建或返回一个新的参数对象,它可以是类似于名称、类型、尺寸大小和值这样的属性。

Note: This method does not automatically add the new Parameter to the collection. To add the Parameter to the Parameters Collection, use the Append property.
注意:这个方法不会将新参数添加到集合中。如果你要实现上述功能,可以使用Append属性。

Syntax
语法

Set objparameter=objcommand.CreateParameter(name,type,direction,size,value)

Parameter
参数
Description
描述
name Optional. The name of the Parameter object.
可选参数。指定参数对象的名称
type Optional. One of the DataTypeEnum contatants that specifies the data type for the Parameter object. Default is adEmpty. If you choose a variable-length data type, you will also need to specify the Size parameter or the Size property. If you specify adDecimal or adNumeric data type, you must also set the NumericScale and the Precision properties of the Parameter object.
 可选参数。可设置为DataTypeEnum常量集内的其中一个常量,以指名参数对象的数据类型。默认值是:adEmpty。如果你选择variable-length[变量-长度]数据类型,你必须还要指定Size参数和Size属性。如果你指定了adDecimal或adNumeric数据类型,你还必须要设置NumericScale[数值尺寸]以及参数对象中的Precision[精密度]属性
direction Optional. One of the ParameterDirectionEnum constants that defines the direction of the Parameter object. Default is adParamInput.
可选参数。可设置为ParameterDirectionEnum常量集内的一个常量,以定义参数对象的direction[方向]。默认值为adParamInput
size Optional. Specifies the length of a variable-length data type, if such a type was declared in the Type parameter. Default is zero.
可选参数。指定一个variable-length[变量-长度]数据类型,如果你在Type参数中声明了改类型的话。默认值为0
value Optional. The value of the Parameter object
可选参数。指定参数对象的值


DataTypeEnum Values

Specifies the data type of a Field, Parameter, or Property object
指定一个字段、参数或属性对象的数据类型:

Constant
常量
Value
Description
描述
adEmpty0No value
空值
adSmallInt2A 2-byte signed integer.
一个2位含正负号的整数
adInteger3A 4-byte signed integer.
一个4位含正负号的整数
adSingle4A single-precision floating-point value.
一个单精度浮点值
adDouble5A double-precision floating-point value.
一个双精度浮点值
adCurrency6A currency value
一个货币值
adDate7The number of days since December 30, 1899 + the fraction of a day.
日期值
adBSTR8A null-terminated character string.
一个null-terminated[不含后缀]的字符/字符串
adIDispatch9A pointer to an IDispatch interface on a COM object. Note: Currently not supported by ADO.
IDispatch(位于COM对象)界面指示器。
注意:现在还不被ADO支持
adError10A 32-bit error code
一个32位的错误代码
adBoolean11A boolean value.
一个逻辑值
adVariant12An Automation Variant. Note: Currently not supported by ADO.
一个自动操作的变量
注意:现在还不被ADO支持
adIUnknown13A pointer to an IUnknown interface on a COM object. Note: Currently not supported by ADO.
IUnknown(位于COM对象)界面指示器。
注意:现在还不被ADO支持
adDecimal14An exact numeric value with a fixed precision and scale.
拥有一个固定精确度和范围的一个精确数值
adTinyInt16A 1-byte signed integer.
一个1位含正负号的整数
adUnsignedTinyInt17A 1-byte unsigned integer.
一个1位不含正负号的整数
adUnsignedSmallInt18A 2-byte unsigned integer.
一个2位不含正负号的整数
adUnsignedInt19A 4-byte unsigned integer.
一个4位不含正负号的整数
adBigInt20An 8-byte signed integer.
一个8位含正负号的整数
adUnsignedBigInt21An 8-byte unsigned integer.
一个8位不含正负号的整数
adFileTime64The number of 100-nanosecond intervals since January 1,1601
从1601年1月1日开始计算的以100毫微秒为单位所经过的数量(即经过了多少个100毫微秒)
adGUID72A globally unique identifier (GUID)
全局统一标识符(GUID)
adBinary128A binary value.
一个二进制值
adChar129A string value.
一个字符串值
adWChar130A null-terminated Unicode character string.
一个null-terminated(不含后缀)的Unicode[统一的字符编码标准, 采用双字节对字符进行编码]字符/字符串
adNumeric131An exact numeric value with a fixed precision and scale.
拥有一个固定精确度和范围的一个精确数值
adUserDefined132A user-defined variable.
用户自定义变量
adDBDate133A date value (yyyymmdd).
日期值(yyyymmdd)
adDBTime134A time value (hhmmss).
时间值(hhmmss)
adDBTimeStamp135A date/time stamp (yyyymmddhhmmss plus a fraction in billionths).
一个日期/时间戳(yyyymmddhhmmss加上一个十一分之一的小数)
adChapter136A 4-byte chapter value that identifies rows in a child rowset
一个4位的chapter值,它指明了字记录集
adPropVariant138An Automation PROPVARIANT.
一个自动操作执行的PROPVARIANT
adVarNumeric139A numeric value (Parameter object only).
一个数值(仅支持参数[parameter]对象)
adVarChar200A string value (Parameter object only).
一个字符串值(仅支持参数[parameter]对象)
adLongVarChar201A long string value.
一个长字符串值
adVarWChar202A null-terminated Unicode character string.
一个null-terminated(不含后缀)的Unicode[统一的字符编码标准, 采用双字节对字符进行编码]字符/字符串
adLongVarWChar203A long null-terminated Unicode string value.
一个null-terminated(不含后缀)的Unicode[统一的字符编码标准, 采用双字节对字符进行编码] 长字符/字符串
adVarBinary204A binary value (Parameter object only).
一个二进制值(仅支持参数[parameter]对象)
adLongVarBinary205A long binary value.
一个长二进制值(仅支持参数[parameter]对象)
AdArray0x2000A flag value combined with another data type constant. Indicates an array of that other data type.
一个标记值,它是与其他的数据类型常数结合在一起使用的。它指明了包含其它数据类型的数组

ParameterDirectionEnum Values

Specifies whether the Parameter represents an input parameter, an output parameter, both an input and an output parameter, or the return value from a stored procedure.
指定参数是否代表了一个输入参数、一个输出参数或者同时代表了上述二者,或返回已有的程序值。

Constant
常量
Value
Description
描述
adParamUnknown0Direction is unknown
未知指示(说明)
adParamInput1Input parameter
输入参数
adParamOutput2Output parameter
输出参数
adParamInputOutput3Both input and output parameter
同时包含输入参数和输出参数
adParamReturnValue4Return value
返回值

 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值