Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_databases thread: difference between use Record Set and doesn't use it


Message #1 by "Rodrigo Arroyo" <r_arroyo@y...> on Thu, 27 Apr 2000 19:45:54
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...


  Return to Index