How to add Primary key in DataSet
Answers were Sorted based on User's Feedback
Answer / kamalakannan.a
If we use c#
DataTable dt=new DataTable();
DataColumn Dc1 = new DataColumn("No", Type.GetType
("System.Int32"));
dt.Columns.Add(Dc1);
//Set Primary key
DataColumn[] dc = new DataColumn[1];
dc[0] = dt.Columns["No"];
dt.PrimaryKey = dc;
Kamal..
| Is This Answer Correct ? | 34 Yes | 7 No |
Answer / gopi
ds.Tables[0].Constraints.Add("pk_sid",
ds.Tables[0].Columns[0], true);
| Is This Answer Correct ? | 29 Yes | 4 No |
Answer / shahil singh
dim col() as new dt.datacolumn
col(0)=dt.column(1)
dt.primarykey=col
| Is This Answer Correct ? | 30 Yes | 8 No |
Answer / r.prajapati
In eidt dataset designer right click on column name which u
want as primary key and set it as pk
| Is This Answer Correct ? | 19 Yes | 14 No |
Answer / tamilan
This is answer is great. its help me lot.
In eidt dataset designer right click on column name which u
want as primary key and set it as pk
| Is This Answer Correct ? | 6 Yes | 5 No |
What is connection string?
What is the difference between oledb sql server and oledbdotnet provider?
How do I delete a row from a DataTable?
can we have multiple datatables in a datareader ?
18 Answers Fulcrum Logic, Infosys, Kale Consultants, Ness Technologies,
What are the ADO.NET Controls?
What are all the different methods under sqlcommand?
What are the pre-requisites for connection pooling?
What is Debug.write does?
What is fill method in ado.net?
Explain the various objects in dataset.
What are the functions of oledbdataadapter?
what is a dataset?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)