Microsoft
Software
Hardware
Network
Question : How to SElect only Top row from datatable
I am selecting rows from a datatable - my selection returns multiple rows, but I only wawnt the first one. I am using a try vcatch with a break to kill the loop after the first row (I am importing the rows into another table that has unique constraint that prevents additional rows being imported)
How can I use the SQL statement such as "Select Top 1 ActivityID" in a Datatable SElect?
foreach (DataRow cRow in dsCertifications.Tables[0]
.Rows)
{
int findme = int.Parse(cRow[1].ToString
());
DataRow[] foundrow = dtTranscript.Select("Activ
ityID="+fi
ndme, "EndDate DESC");
if (foundrow != null)
{
foreach (DataRow found in foundrow)
{
try
{
dtRegCerts.ImportRow(found
);
}
catch
{
break;
}
}
}
}
Answer : How to SElect only Top row from datatable
foundrow[0] wil give the first row..
-Ajitha
Random Solutions
Importing an Access table
Windows 7 Group Policy management for Firewall
The requested lookup key was not found in any active activation context.
User name disappeared on Welcome Screen
Activate an existing task in the tas scheduler
Need to restore a single mailbox from ntbackup
Visual FoxPro 9 formset question
how can I remove 2 or more favorites within IE 8 at the same time?
Looking for a utility that will automatically back up a file when the file has been modified and then saved with the same file name.
Can I delete only the visible rows without having to select visible