docs:programming:office_vba:adodb_recordset

This is an old revision of the document!


ADODB.Recordset

Typical code to connect and process records in a table:

Public Sub ListFields()
	Dim rst As ADODB.Recordset
	Dim fld As ADODB.Field

	Set rst = New ADODB.Recordset
	rst.Open "tblCustomers", CurrentProject.Connection
	For Each fld In rst.Fields
		Debug.Print fld.Name
	Next fld
	rst.Close
	Set fld = Nothing
	Set rst = Nothing
End Sub
  • docs/programming/office_vba/adodb_recordset.1184349959.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)