I'm wondering what the best method is for intializing a recordset?

-------------------------------------------------------
dim rstCurrent as ADODB.Recordset

set rstcurrent = new ADODB.Recordset
rstcurrent.open ...

-------------------------------------------------------

OR

-------------------------------------------------------
Dim rstCurrent as New ADODB.Recordset

rstCurrent.open ...

-------------------------------------------------------

Thanks