Question

I have a generated DataSet with bunch of tables. In one table I have a custom query that I use to select people that are older than 15 years. I would like to change this query during working program, so that the query will look like 'select * from people where age > 17'. Now it looks like 'select * from people where age > 15'.

All that I know is what is the name of this query in DataSet. It's GetNotYoungPeople. Could you please help me with this?

Was it helpful?

Solution

It's probably part of a SQLDataAdaptor.SelectCommand

The DataSet is populated by the SQLDataAdaptor.Fill method and has no attached queries itself

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top