Can Not Access Foreign Key Constraint

R

Rajesh Tiwari

Hi Group,
i have a foreign key in a table in sql server.i am using a dataset and
populating it with the contents of this table.my problem is that i am not
able to access the foreign key that i cretaed on this table in the
database.i am using a code something like this.if i check the number of
constraints on the table it prints 1,which is nothing but the primary key
constraint on this table,why doesn't it print 2 and show both primary and
foreign key constraint.i have tried most of the combinations in the code
below.
plz help.

DataSet myDataSet = new DataSet("myDataSet");
myDataSet.EnforceConstraints=true;
SqlDataAdapter adpt=new SqlDataAdapter("select * from "+TableName,con);
//adpt.MissingSchemaAction = MissingSchemaAction.AddWithKey;
adpt.FillSchema(myDataSet,SchemaType.Mapped);
Response.Write(myDataSet.Relations.Count);
Response.Write(myDataSet.Tables["Table"].Constraints.Count);
//Response.Write(myDataSet.Tables["dtbl"].Constraints[0].ConstraintName);
//Response.Write(myDataSet.Tables["dtbl"].Constraints[0].GetType());

thanks in advance
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top