'*********************************************************************
'-------------------------------------------------------------
'The first parameter
'It can be a table name or a SQL statement
'-------------------------------------------------------------Chinaz^com
'The second parameter
'Specify the current connection.
'-------------------------------------------------------------
'The third parameter
'Indicates CursorType, CursorType indicates what cursor type will be started with,
'Including adOpenForwardOnly, adOpenKeyset, adOpenDynamic and adOpenStatic,
'The following are the descriptions:
'The third parameter constant value description
'adOpenForwardOnly0 default value, start a cursor that can only move forward (ForwardOnly).
'adOpenKeyset1 starts a Keyset type cursor.
'adOpenDynamic2 starts a Dynamic type cursor.
'adOpenStatic3 starts a Static type cursor.
Webmaster.
'-------------------------------------------------------------
'The above cursor types will directly affect all properties and methods of the Recordset object. The following list explains the difference between them.
'Recordset property adOpenForwardOnly(0)adOpenKeyset(1)adOpenDynamic(2)adOpenStatic(3)
'AbsolutePage does not support readable, writeable, readable, writeable
'AbsolutePosition does not support readable, writeable, readable, writeable
'ActiveConnection readable, writeable, readable, writeable, readable, writeable, readable, writeable
Chinaz.com