When you use the designer to edit a dataset, you can drag a "Query" from the
toolbox and this creates something named (by default) "QueriesTableAdapter".
The Properties windows describes this (in the pull down list) as
QueriesTableAdapter (in bold) followed by QueriesTableAdapter (in non-bold).
Generally the bold is the name of the object and the non-bold is its type.
Clearly this is not always the case because if I change the name of my
QueriesTableAdapter both the bold and non-bold text changes!
The class behind this graphical widget makes it obvious what it is - its a
class that contains a collection of sql command objects and, for each command
object, exposes a public method that calls the said sql command. It inherits
from System.ComponentModel.Component.
My question remains however, how can stop it being exposed publically. I can
do so the for the analagious TableAdapter (which is similar to the
QueriesTableAdapter except it is associated with a DataSet and includes
methods for filling and returing the dataset as well) but I can't see a way
of doing so for the QueriesTableAdapter?