TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
amit_gupta14
NA
119
0
What's the use of BeginEdit/EndEdit when used with a datarow
Dec 20 2004 5:21 AM
1.What's the use of BeginEdit/EndEdit when used with a datarow 2. When a datarow variable needs to be created, e.g. DataRow dr=new DataRow(); It gives the error:"No overload for method 'DataRow' takes '0' arguments" Why such error. If I simply use Datarow dr, then no error. 3. Will the find method work on table having primary key? I mean if there is no primary key, then how to find the record? 4. When I write DataRow dr; int aa=Int32.Parse(textBox1.Text); dr=ds.Tables[0].Rows.Find(aa); It gives run time error that table has no primary key, though it is present. 5. What's the syntax to retrieve a particular value of a field of a row using datarow.
Reply
Answers (
1
)
How to find the corresponding values of the other fields if value of one field is given.
Why error in DataRow drow=new DataRow();