(a) 
Dim rsRecordset as New ADODB.Recordset

(b)
Dim rsRecordset as Object
Set rsRecordset = CreateObject("ADODB.Recordset")

Example 2: Early and late binding.

Back to Article