Role of Dataset in window forms
hi
i have app which look and works like a windows explore and its used for file storing and retivial. now i am planing to do it in vb.net as i have mostly static data that is mostly no changes done to the database.. i.e one a file created will only be viewed. and rarly updated.. so i thought i can get the whole data in dataset in diff tables..
is this approach good...?
and how do i load the data in the dataset for the tables ..?
how do i get the changes done to the database.. i see we have some methods like dataset1.getchanges... and dataset1.tables(1).getchanges...
regards
Re: Role of Dataset in window forms
Dataset is the new revolution in ADO.NET that has two main features :
1-Connect to source .
2-Discoonect mode (datareader reads from source and fill dataset ). This is the exciting part in ADO.NET . Once you've filled it then you have exactly the same copy of the source . After you are done , then push it back the source and your database is updated.