How to Get Values?

  • Thread starter Thread starter Soulless
  • Start date Start date
S

Soulless

I am perplexed and probably not approaching this right, but I have the
following in code:

_dsSessionSer.Merge(ibrDBAccess.SybaseRetrieveDataset(lsSQL,
"SessionSer"));

I have defined _dsSessionSer as a DataSet (dsSessionSer) and
instantiate it.

It returns data into 3 columns.

I wish to get a value from row 1 in the dataset but cannot figure out
how to code that to make it work.

Please help. Thanks!
 
A DataSet doesn't have rows - it has tables; a DataTable has rows - so
perhaps get the first table and try again?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top