当前位置: 首页 > 网络学院 > 服务端脚本教程 > ADO > ADO Precision 属性

ADO
ADO介绍
ADO数据库连接
ADO记录集
ADO显示记录
ADO查询语句
ADO记录排序
ADO添加记录
ADO更新记录
ADO删除记录
ADO演示
ADO提升执行速度
ADO Command对象
ADO Connection对象
ADO Error
ADO Field
ADO Parameter
ADO 属性
ADO Record
ADO Recordset
ADO Stream

ADO Precision 属性


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 390 ::
收藏到网摘: n/a

The Precision property sets or returns a byte value that is the maximum number of digits allowed when representing numeric values in a Parameter or Field object.
Precision属性的作用是:设置或返回一个参数或字段对象中数值所允许的最大位数(以字节数表示)。

Object对象 Description of the Precision Property
Precision属性描述
Field

The Precision property is normally read-only on a Field object, but for new Field objects that have been added to the Fields collection of a Record, it is read/write after the Value property for the Field has been specified and the provider has successfully added the new Field by calling the Update method of the Fields collection
一般情况下,Precision[精确度]属性作用于一个field[字段]对象来说,它的权限是只读的;但是对于一个新添加到记录字段集里的字段对象而言,在指定了字段的Value[值]属性,并且技术提供对象[provider]已经通过请求字段集中的Update[更新]方法成功的添加了新字段之后,它的权限便是:可读/可写

Parameter The Precision property has read/write permissions on a Parameter object
Precision[精确度]属性对于Parameter[参数]对象的权限是可读/可写

Syntax
语法

objectname.Precision

Example
案例

<%
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).Precision)
rs.Close
conn.close
%>

评论 (0) All

登陆 | 还没注册?