There has been some discussion in our workplace concerning the advantages/disadvantages of creating objects. We were analyzing these different methods, and there may be other ways also. What is your opinion on these, which is considered to be the 'best' method?
1. dim adoThing as New ADODB.Recordset
2. dim adoThing as ADODB.Recordset
...
set adoThing = new ADODB.Recordset
3. dim adoThing as ADODB.Recordset
...
set adoThing = CreateObject("ADODB.Recordset"
4. ?
1. dim adoThing as New ADODB.Recordset
2. dim adoThing as ADODB.Recordset
...
set adoThing = new ADODB.Recordset
3. dim adoThing as ADODB.Recordset
...
set adoThing = CreateObject("ADODB.Recordset"
4. ?