My impressions of VB.Net application
Select * From Customers
Select * From States
Select * From Countries
Load via three dataadapters into a single dataset, multiple tables.
Create data relations between the Primary and Foreign keys in the dataset tables.
Populate form with the appropriate data using databinding where possible. Control via CurrencyManager, and BindingContext.
Save changes to form and transmit only changes to Dataadapter
Use the CommandBuilder to create the appropriatte SQL statements such as INSERT.
QUESTIONS
1. What about data traffic (transferring large tables to app) ?
2. No more complex SQL statements ?
3. How efficient is CommandBuilder ?
4. IS MY UNDERSTANDING OF .NET OUT TO LUNCH ???????
Select * From Customers
Select * From States
Select * From Countries
Load via three dataadapters into a single dataset, multiple tables.
Create data relations between the Primary and Foreign keys in the dataset tables.
Populate form with the appropriate data using databinding where possible. Control via CurrencyManager, and BindingContext.
Save changes to form and transmit only changes to Dataadapter
Use the CommandBuilder to create the appropriatte SQL statements such as INSERT.
QUESTIONS
1. What about data traffic (transferring large tables to app) ?
2. No more complex SQL statements ?
3. How efficient is CommandBuilder ?
4. IS MY UNDERSTANDING OF .NET OUT TO LUNCH ???????