ADO+RECORDSETS

  • Thread starter Thread starter Guy Cohen
  • Start date Start date
G

Guy Cohen

Hi all

Is it possible to work with ADO+RECORDSETS in asp.net ?
If yes - please send an example


TIA
Guy
 
Is it possible to work with ADO+RECORDSETS in asp.net ?
If yes - please send an example

It is possible, just treat them like any other COM object. But there really
is no need to. Are you getting ADO recordsets from a COM object or
something?
 
ADO is possible, but not recommended.


DataSets and IDataReaders are the correct way to access data.

..ExecuteReader and .LoadDataSet are 2 methods to google on.
 
Back
Top