网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: ADO :: ADO MarshalOptions 属性

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

ADO MarshalOptions 属性


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-28 浏览:1183 :: ::

The MarshalOptions property sets or returns a MarshalOptionsEnum value that specifies which records are to be returned back to the server. Default is adMarshalAll.
MarshalOptions属性的作用是:设置或返回一个MarshalOptionsEnum值,它是用于指定需要被传回服务器的记录。默认值为adMarshalAll。

Syntax
语法

objRecordset.MarshalOptions

Example
案例

<%
if rs.MarshalOptions=adMarshalAll then
  rs.Update
  response.write("All records returned to server")
end if
%>


MarshalOptionsEnum Values

Constant常量 Value值 Description描述
adMarshalAll 0 Default. Returns all rows
默认值。返回所有行
adMarshalModifiedOnly 1 Returns only modified rows
仅返回被修改过的行

评论 (0) All