3
Answers

Seeking help regarding career advice

Sumedh Waghre

Sumedh Waghre

9y
949
1
Hello everyone like every fresher i had one question in my mind, i am about to step into my career zone. My qualification is i am a graduate in Bsc-IT + NIIT 3 years diploma course and i am excited, as well as pretty nervous like other freshers where to get the job how should i start my career.
Should i apply for abroad MNCs or should i try to get job here in india itself.
From where should i start, I am pretty much confused about this situation.
My area of intrests are windows form application, LINQ, MVC, Web applications.
 
Answers (3)
1
Vulpes
NA 98.3k 1.5m 10y
A DataTable in ADO.NET has no concept of a 'current row' because, once it's been populated, it's disconnected from the underlying database. In fact, it doesn't need to have an underlying database at all - it can be created entirely using code!

Once you have your DataTable (dt, say), you can iterate through its DataRows just like any other collection:

foreach(DataRow dr in dt.Rows)
{
   // do something with dr
}

You can also obtain a DataRow directly:

DataRow rowFirst = dt.Rows[0];

DataRow rowLast = dt.Rows[dt.Rows.Count - 1];

It follows that there's no concept of being before the first row or after the last row (BOF or EOF in an ADO RecordSet). You must always be within the row collection itself or you'll get an exception.


0
David Smith
NA 1.9k 0 10y
Thank you so much.