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
Muhammad
NA
4
0
Need To ask question From Data Table
Jul 24 2006 5:26 AM
Hello,
I need to ask something , that I want to take values from 2 or more tables of database and need to print those values within same row means if 2 tables are related so I need to print parent column values and child column values within same row or if 2 or more tables are not related then also i need to print values of columns within same row . . for that I used dataset ,datadapter, and datarow [] , like this .
Oleadapter =
new
OleDbDataAdapter(cmd1.ToString(),sConnection);
Oleadapter.Fill(ds,"table1");
DataRow[] dResult = ds.Tables["Execution"].Select();
foreach
(DataRow dr
in
dResult)
{
}
Now I want to take 2
nd
table values within same row for printing like .
Console.writelin(table1values , table2values, table3values………etc…….);
How will I do that please .Tell me the answer . as I am extracting whole query from database .
Thanks
Reply
Answers (
4
)
how to store the contents of datagridview to excel sheet
Prob: Connecting hosting SQL server