使用 CursorType 属性可指定打开 Recordset 对象时应该使用的游标类型。Recordset 关闭时 CursorType 属性为读/写,而 Recordset 打开时该属性为只读。
如果将 CursorLocation 属性设置为 adUseClient 则只支持 adUseStatic 的设置。如果设置了不支持的值,不会导致错误,将使用最接近支持的 CursorType。
如果在数据连接上定义
cnn1.CursorLocation = adUseClient
则cnn1上的Recordset只支持adUseStatic,尽管你可能定义它为adOpenForwardOnly及其它.
使用field的 .UnderlyingValue 属性只有在CursorType为 adOpenKeyset时才支持属性
field.UnderlyingValue ,注意它与 field.OriginalValue 的区别