How you will set the datarelation between two columns?

Answers were Sorted based on User's Feedback



How you will set the datarelation between two columns?..

Answer / swapna

ADO.NET provides DataRelation object to set relation
between two columns.It helps to enforce the following
constraints,a unique constraint, which guarantees that a
column in the table contains no duplicates and a foreign-
key constraint,which can be used to maintain referential
integrity.

A unique constraint is implemented either by simply setting
the Unique property of a data column to true, or by adding
an instance of the UniqueConstraint class to the
DataRelation object's ParentKeyConstraint.

As part of the foreign-key constraint, you can specify
referential integrity rules that are applied at three
points,when a parent record is updated,when a parent record
is deleted and when a change is accepted or rejected.

Is This Answer Correct ?    3 Yes 0 No

How you will set the datarelation between two columns?..

Answer / muthu kumar

DataSet d = new DataSet();
DataColumn parentDC = new
DataColumn(d.Tables["parentTable"].Columns["id"]);
DataColumn childDC = new
DataColumn(d.Tables["ChildTable"].Columns["id"]);
DataRelation ds = new DataRelation("relation name",
parentDC, childDC);
d.Relations.Add(ds);

Is This Answer Correct ?    4 Yes 2 No

How you will set the datarelation between two columns?..

Answer / ganesh

the only option is foreign key

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More ADO.NET Interview Questions

How do you connect to sql server database without using sqlclient?

0 Answers  


How to work with disconnected data - the dataset and sqldataadapter?

0 Answers  


How to connect and retrieve data from database using dataset

0 Answers  


What is the use of sqldatareader class?

0 Answers  


What is maximum pool size in ado.net connection string?

0 Answers  






What are two important objects of ADO.Net?

0 Answers  


How to identify the updated rows in a dataset?

0 Answers  


What are the functions of oledbdataadapter?

4 Answers  


What is microsoft ado?

0 Answers  


What are the steps in connecting to database?

3 Answers   IBM, Microsoft,


can u tell me the how to get the print for the form

2 Answers   Crea,


What is the difference between ADO and ADO.Net?

0 Answers  


Categories