It's hard to exactly answer your question since we no longer use Data
Environments or Recordsets. We now store data in a disconnected mode
inside of an entity called a DataTable. DataTables can be used as
individual units or placed inside of a larger entity called a DataSet
(where other DataTables can be stored inside of a Tables collection).
Either way, you access a field of a DataTable via it's "Item" property:
DataTable.Item("FIELD")
Arsalan said:
What is the equivalent of
DataEnvironment1.rsCommand1("FIELD") [VB Dataenvironment]
in ADO.NET?