Adding a new column to a dataset

  • Thread starter Thread starter Lasse Eskildsen
  • Start date Start date
L

Lasse Eskildsen

Hi,

I have added a new column to my dataset, but how do I save this to the
database?
I can only make "Oledbdataadapter.update(dataset)" write rows to the
database.

Thanks in advance!
 
Lasse Eskildsen said:
I have added a new column to my dataset, but how do I save this to
the database?
I can only make "Oledbdataadapter.update(dataset)" write rows to
the database.

Execute an "ALTER TABLE..." SQL statement using an OleDBCommand to change
the table structure in the database
 
Back
Top