hi, i want to know the difference between the follow code:
Set Ob_Conn = Server.CreateObject("ADODB.Connection")
Ob_Conn.Open DBcn_ConnectionString
Set Ob_RS1 = Server.CreateObject("ADODB.Recordset")
strSql= " SOMETHING SQL"
Set Ob_RS1 = Ob_Conn.Execute (strsql)
-------
AND
-------
Set Ob_Conn = Server.CreateObject("ADODB.Connection")
Ob_Conn.Open DBcn_ConnectionString
strSql= " SOMETHING SQL"
Set Ob_RS1 = Ob_Conn.Execute (strsql)
Because the two options works, but which is the difference between use a
recorset a doesn't use it?
THAKS A LOT
Atte Rodrigo Arroyo
Mexico D.F.
r_arroyo@y...