Hey, I'm pulling data from a table, and storing it into a DataRow. Per MSDN , I should be able to get an item from the row simply by dRow.Item("time")
, but I only get the option of using ItemsArray. Is there any specific reason this would happen? Thanks. Link to picture showing the intellisense (correct name?) picture here
Relevant code:
DataSet dataStore = new DataSet();
SqlDataAdapter runDataAdapter = new SqlDataAdapter("SELECT * From runsTable", sqlConnection);
runDataAdapter.Fill(dataStore, "Runs");
DataRow dRow = dataStore.Tables["Runs"].Rows[0];