当前位置: 首页 > 网络学院 > 服务端脚本教程 > ADO > ADO DefinedSize 与 ActualSize
The DefinedSize property returns a long value that indicates the defined size of a field (in bytes).
DefinedSize属性的作用是:返回一个用于定义字段长度的值。
The ActualSize property is a read-only property. It returns a long value that indicates the actual length of a field's value. If ADO cannot determine the length of the Field object's value, it returns adUnknown.
ActualSize属性是只读的。它的作用是返回一个字段值的真实长度。如果ADO不能定义一个字段值的真实长度,那么它将返回adUnknown。
The DefinedSize property defines how long a field's value can be, while ActualSize tells how long it really is.
DefinedSize属性是定义一个字段值所允许的长度的;而ActualSize是指明字段的真实长度的。
objrs.Fields(number).DefinedSize objrs.Fields(number).ActualSize |
<% set conn=Server.CreateObject("ADODB.Connection") conn.Provider="Microsoft.Jet.OLEDB.4.0" conn.Open "c:/webdata/northwind.mdb" set rs=Server.CreateObject("ADODB.Recordset") rs.open "Select * from orders", conn response.write(rs.Fields(0).DefinedSize) response.write(rs.Fields(0).ActualSize) rs.Close conn.close %> |