w3pop.com :: 网络学院 :: ADO :: ADO MarshalOptions 属性
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。
objRecordset.MarshalOptions |
<%
if rs.MarshalOptions=adMarshalAll then
rs.Update
response.write("All records returned to server")
end if
%>
|
| Constant常量 | Value值 | Description描述 |
|---|---|---|
| adMarshalAll | 0 | Default. Returns all rows 默认值。返回所有行 |
| adMarshalModifiedOnly | 1 | Returns only modified rows 仅返回被修改过的行 |
评论 (0)
All