I currently have some trouble with DataSets and DefaultValues.
I have a DB on an MSSQL2000 Server with a table that contains several
Columns with default values - e.g. defined like

CREATE TABLE tbl_A (
[AGUID] uniqueidentifier ROWGUIDCOL NOT NULL CONSTRAINT
[DF_tbl_A_AGUID] DEFAULT (newid()),
[hidden] [bit] NOT NULL CONSTRAINT [DF_tbl_A_Hidden] DEFAULT (0)
)

I did use the assistent to create a new data source for my project based on
that DB.
Unluckely the defaultvalues are not fetched from the DB. I could understand,
that newid() was not fetched since it's a function - but at least the 0
should be set.

Can anybody help me on how to get the DefaultValues from the DB into the
DataSet?