I am not very clear on why a dataset is a dataset and not a database :\ My
view was that a Dataset is a representation of a database but it exists only
in memory and not on disk.
So basically I cannot do what I want to do
myDataTable.Select(FilterExpression As String) acts only on a single
DataTable (the object that calls the Select function), so does
myDataview.RowFilter
BUT
If I create a real DB from my Dataset? And then query that DB to obtain the
Datatable that I wanted in the first place?
If this is possible it seems very stupid to me that the same thing can't be
done without having to save the Dataset into a DB on disk.
My god, I am such a n00b
"Cor Ligthert" wrote:
> LunaNera,
>
> A dataset is a dataset not a database.
>
> You can use
> datatable.select (what are not SQL selects)
> and
> dataview.rowfilter(which uses the same expressions as above)
> and
> jus loop in a lot of way through your tables in the dataset
> and
> a lot more
>
> I hope this helps?
>
> Cor
>
>
>