Hi,
I am looking for clarification on opening my recordsets
I used to use the following for rs which were read only
now i am changing all these to
is it worth me doing this? - will i see any performance gain?
I am looking for clarification on opening my recordsets
I used to use the following for rs which were read only
Code:
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn
....
rs.close
now i am changing all these to
Code:
Set rs = conn.execute(sql)
...
rs.close
is it worth me doing this? - will i see any performance gain?