Will Change in the Backend Table affects dataset automatically

  • Thread starter Thread starter Bibin
  • Start date Start date
B

Bibin

Dear All..

I'm in the development of a CRM application in VB DotNet. So after creating
the Dataset for a
particular table, If i'm changing the table structure in the database
according to the clients need,
will it automatically reflects in the Dataset.Structural changes means
adding one more key to the
combination primary key, or changing the order of the fields in the table or
adding one more field.
If the change will not reflectes automatically what i have to do for
getting the latest changes in the
dataset which is already created for that table.

Thangs & rgds
Bibin.
 
Since your DataSet is disconnected and has no idea of what your database is
doing, it won't know of any changes made to the schema or data in the
database. You'll need to refresh/repopulate the DataSet to retrieve the
latest schema and/or data from the database.
 
Back
Top