Assume I have an ADO recordset object, rs.
I can reference the fields in a number of ways, commonly people use
1. rs!FieldName
2. rs.Fields("FieldName"
or rs.Fields(sVariable)
Obviously the second is useful for fields with spaces in the names, but what other relative merits are there?
Are there any (significant) performance issues?
I can reference the fields in a number of ways, commonly people use
1. rs!FieldName
2. rs.Fields("FieldName"
Obviously the second is useful for fields with spaces in the names, but what other relative merits are there?
Are there any (significant) performance issues?