Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

recordset type

Status
Not open for further replies.

tonyjob

Programmer
Nov 20, 2000
25
0
0
GB
what is the record set type? what is dynaset? and what other types are there and what do they do?


~Tony
 
* adOpenDynamic: Uses a dynamic cursor. Additions, changes, and deletions by other users are visible, and all types of movement through the Recordset are allowed, except for bookmarks, if the provider doesn't support them.

* adOpenForwardOnly: Default. Uses a forward-only cursor. Identical to a static cursor, except that you can only scroll forward through records. This improves performance when you need to make only one pass through a Recordset.

* adOpenKeyset: Uses a keyset cursor. Like a dynamic cursor, except that you can't see records that other users add, although records that other users delete are inaccessible from your Recordset. Data changes by other users are still visible.

* adOpenStatic: Uses a static cursor. A static copy of a set of records that you can use to find data or generate reports. Additions, changes, or deletions by other users are not visible.

* adOpenUnspecified: Does not specify the type of cursor.

Hope this helps!
-Mats
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top