Hello all,
I need some expertise here. I am trying to learn this .NET stuff and I am confused about recordsets. Traditionally I would use a recordset like this....
Dim objComm, objComm2
Set objComm = Server.CreateObject("ADODB.Command")
Set objComm2 = Server.CreateObject("ADODB.Command")
objComm.ActiveConnection = strConnect
objComm2.ActiveConnection =strConnect
objComm.CommandText = Orlando
objComm.Execute
Set objComm = Nothing
I have not been able to identify how to accomplish this same thing using .NET. I have read some about datareader and dataset, but I am still confused. Can anyone give me some insight?
Oldwen
I need some expertise here. I am trying to learn this .NET stuff and I am confused about recordsets. Traditionally I would use a recordset like this....
Dim objComm, objComm2
Set objComm = Server.CreateObject("ADODB.Command")
Set objComm2 = Server.CreateObject("ADODB.Command")
objComm.ActiveConnection = strConnect
objComm2.ActiveConnection =strConnect
objComm.CommandText = Orlando
objComm.Execute
Set objComm = Nothing
I have not been able to identify how to accomplish this same thing using .NET. I have read some about datareader and dataset, but I am still confused. Can anyone give me some insight?
Oldwen