L
Laurel
Is there a way, in the debugger, to look at the contents of a dataset? I
tried drilling down into my dataset and it's like exploring the registry!
Anyway, I didn't find anything useful. The code I use to fill the dataset
is below. The dataset fills OK and is usable. I just want to know how it
names things, e.g., if there are multiple instances of a column of the same
name, etc. Right now it can't find Person.Person_ID, although that is part
of my SQL, and there sometimes would be multiple person_id columns in the
result set. (If I modified the sql, of course.)
SqlDataAdapter DBSqlDataAdapter = new SqlDataAdapter(strSQL, DBconnection);
DataSet DBDataSet = new DataSet();
DBSqlDataAdapter.Fill(DBDataSet, strTable);
tried drilling down into my dataset and it's like exploring the registry!
Anyway, I didn't find anything useful. The code I use to fill the dataset
is below. The dataset fills OK and is usable. I just want to know how it
names things, e.g., if there are multiple instances of a column of the same
name, etc. Right now it can't find Person.Person_ID, although that is part
of my SQL, and there sometimes would be multiple person_id columns in the
result set. (If I modified the sql, of course.)
SqlDataAdapter DBSqlDataAdapter = new SqlDataAdapter(strSQL, DBconnection);
DataSet DBDataSet = new DataSet();
DBSqlDataAdapter.Fill(DBDataSet, strTable);