How can I access the result of an SQL XSD query? I have called the tableadapter and the query but not sure how to access it:
I tried this:
;
not working, sad times, does anyone have an idea?
I tried this:
Code:
DataTable commentinfo = commentclass.GetCommentInfo(commentid); int userrating = Convert.ToInt32(commentinfo.Rows[0]["userrating"].ToString()); int commentposterid = Convert.ToInt32(commentinfo.Rows[0]["userposterid"].ToString()); int postrating = Convert.ToInt32(commentinfo.Rows[0]["rating"].ToString())
not working, sad times, does anyone have an idea?
Comment