IT Community - Software Programming, Web Development and Technical Support

How to copy data from one data table to another datable

This is a discussion on How to copy data from one data table to another datable within the C# Programming forums, part of the Software Development category; How to copy data from one data table to another datable...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Software Development > C# Programming

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 07-24-2007, 12:01 AM
kingmaker kingmaker is offline
D-Web Genius
 
Join Date: Jun 2007
Posts: 882
kingmaker is on a distinguished road
Send a message via Yahoo to kingmaker
Question How to copy data from one data table to another datable

How to copy data from one data table to another datable
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-24-2007, 12:05 AM
oxygen oxygen is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 633
oxygen is on a distinguished road
Default Re: How to copy data from one data table to another datable

while(sourceTable.Rows.Cout > 0)
{
sourceRow = sourceTable.Rows[0];
destRow = destination.NewRow();
destRow.ItemArray = sourceRow.ItemArray;
destination.Rows.Add(destRow);
sourceTable.Rows.Remove(sourceRow);
}

or

foreach( DataRow dr in sourceTable.Rows)
{
destination.ImportRow(dr);
}
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to rearrange the columns of the table without lose of data? kingmaker ASP and ASP.NET Programming 1 02-21-2008 09:13 PM
Copy SQL data structures from one SQL server to another SQL server? arjkhanna Server Management 5 11-05-2007 03:57 AM
Data integrity and Data validity simplesabita Software Testing 1 10-30-2007 04:22 AM
What is the difference between global and action sheets within the data table in QTP? sundarraja Testing Tools 1 08-13-2007 11:50 PM
What are the different problems that “Data mining” can solve? Data warehousing oxygen Database Support 1 07-26-2007 04:37 AM


All times are GMT -7. The time now is 09:53 PM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0