Tagged Questions
The datarow tag has no wiki summary.
13
votes
2answers
8k views
ADO.NET DataRow - check for column existance
How do I check for the existence of a column in a datarow? I'm building datatables to organize some data that I've already pulled back from the db. Depending on the type of data in each row I need ...
11
votes
2answers
974 views
Why can't I do foreach (var Item in DataTable.Rows)?
Is there a reason why I can't do the following:
foreach (var Item in DataTable.Rows) {
rather than having to do
foreach (DataRow Item in DataTable.Rows) {
I would have thought this was possible, ...
10
votes
5answers
26k views
Simple way to convert datarow array to datatable
I want to convert an datarow array into datatable.. Wat is the simple way to do this?
10
votes
3answers
23k views
How do I find out if a column exists in a VB.Net DataRow
I am reading an XML file into a DataSet and need to get the data out of the DataSet. Since it is a user-editable config file the fields may or may not be there. To handle missing fields well I'd like ...
9
votes
8answers
3k views
Safely Removing DataRow In ForEach
I dont understand why I cannot do the below - This should work??
foreach (DataRow dataRow in dataTable.Rows)
{
if (true)
{
dataRow.Delete();
}
}
7
votes
3answers
8k views
Check if DataRow exists by column name in c#?
I want to do something like this:
private User PopulateUsersList(DataRow row)
{
Users user = new Users();
user.Id = int.Parse(row["US_ID"].ToString());
...
7
votes
3answers
13k views
How do I bind the result of DataTable.Select() to a ListBox control?
I have the following code:
ListBox.DataSource = DataSet.Tables("table_name").Select("some_criteria = match")
ListBox.DisplayMember = "name"
The DataTable.Select() method returns an array of ...
6
votes
2answers
101 views
difference between getting value from DataRow
Sample code:
DataTable table = new DataTable();
// ...
// insert column to table
table.Columns.Add("name");
// ...
// insert value to table
foreach (DataRow row in ...
5
votes
2answers
6k views
Adding new row to datatable's top
When we use datatable.newrow command, a new empty row added to bottom of rows. However I want newrow to added to top of datatable. How can I make it?
4
votes
3answers
274 views
How can I assign a DBNull in a better way?
I need to parse a value from a DataRow and assign it to another DataRow. If the input is valid, then I need to parse it to a double, or else add a DBNull value to the output. I'm using the following ...
4
votes
6answers
4k views
How to delete multiple rows in a DataTable?
How can I delete specific DataRows within a loop of a DataTable rows which meet a custom condition -lets say the rows having an index of even number-? (Without using LINQ)
Thanks
4
votes
1answer
8k views
How do I get column names to print in this C# program?
I've cobbled together a C# program that takes a .csv file and writes it to a datatable. Using this program, I can loop through each row of the data table and print out the information contained in ...
4
votes
3answers
6k views
3
votes
3answers
65 views
How to modify the List view column?
I have list view the data will be displayed in list view from data table
like this i have done but i have problem at datarow 6
dt = classes.xxxxx.GetData(sql, mf);
if (dt != null)
...
3
votes
4answers
456 views
Extract from DataRow or DataReader with one function
I'm looking for a solution for how to be able to extract data from a database when using either a DataRow and a DataReader with only one function (or one base function).
My problem stems from the ...
3
votes
4answers
2k views
Finding null value in Dataset - DataRow.IsNull method vs ==DbNull.Value - c#
What are the benefits of using the c# method DataRow.IsNull to determine a null value over checking if the row equals DbNull.value?
if(ds.Tables[0].Rows[0].IsNull("ROWNAME")) {do stuff}
vs
...
3
votes
1answer
905 views
Check if WPF DataRowView contains a column
I can get the value of a column in a DataRowView using
DataRowView row;
object value = row["MyColumn"];
of course, if there is no "MyColumn" in the DataRowView, this code throws an exception.
How ...
3
votes
1answer
177 views
How can this code be further optimized?
I just got a code handed over to me. The code is written in C# and it inserts realtime data into database every second. The data is accumulated in time which makes the numbers big.
The data is ...
3
votes
3answers
625 views
How to extend DataRow and DataTable in C# with additional properties and methods?
I would like create a custom DataRow that will have -let's say- a propery called IsCheapest.
public class RateDataRow : DataRow
{
protected internal RateDataRow(DataRowBuilder builder) : ...
3
votes
1answer
851 views
How do I create a method that converts a DataRowCollection to an array of objects of a generic type in C#?
I am trying to create a method that takes a DataTable or a DataRowCollection and converts it to an array of a generic type. Something like this:
public static T[] ...
3
votes
5answers
753 views
Iterate through a DataTable to find elements in a List object?
As I iterate through a DataTable object, I need to check each of its DataRow objects against the items in a generic string List.
I found a blog post using the List's Find method along with a ...
3
votes
7answers
8k views
C# DataRow Empty-check
I got this:
DataTable dtEntity = CreateDataTable();
drEntity = dtEntity.NewRow();
Then I add data to the row (or not).
Lots of code, really don't know if there's anything inside the row.
Depends ...
3
votes
2answers
3k views
Add new column and data to datatable that already contains data - c#
How do I add a new DataColumn to a DataTable object that already contains data?
PseudoCode
//call SQL helper class to get initial data
DataTable dt = sql.ExecuteDataTable("sp_MyProc");
...
3
votes
2answers
1k views
how to return single row using TableAdapter
Hi I am currently using TableAdapter that returns a dataTable, which is fine to use when result table should have more than one row like :
MyItemsDataTable myItemsDataTable = Adapter.GetAllItems();
...
3
votes
1answer
4k views
C#/winforms: how to best bind a propertygrid and a System.Data.DataRow
i have System.Data.DataRows with several fields, most of them just plain types like int, single, string.
what is the best way to make them editable using a propertygrid?
it should work automatically ...
3
votes
3answers
11k views
C# DataTable ItemArray returns '{}' - how can I test for null value?
I have a DataTable resultSet; - I'm trying to check fields for null, but get an '{}' (empty-set ?) object back. Searches involving "{}" aren't yielding any appropriate solutions.
This is the code ...
3
votes
2answers
8k views
Convert DataRowCollection to DataRow[]
What's the best performing way to convert a DataRowCollection instance to a DataRow[]?
2
votes
2answers
65 views
Checking data with commas in a DataTable
EveryBody
I apologize for this newbie question, but I'm looking for a simple solution.
I want to write a fuction that will return a datatable.
like this:
public static DataTable ...
2
votes
2answers
771 views
DataTable's Row's First Column to String Array
I have a DataTable. I want to get every rows first column value and append to a string array. I do not want to use foreach looping for every row and adding to string array. I tried this, but stuck ...
2
votes
4answers
781 views
VB.Net Datatable Select MID function
I'm trying to extract all rows from a datatable where "CODE" follows the pattern "Z##A". I tried the following to no avail:
Dim floods() As DataRow = arqTable.Select("mid(code,1,1)='Z' and ...
2
votes
1answer
216 views
How to commit these data row changes back to the DB
I have not really worked with datasets before. I use a lot of LINQ / Entity Framework.
Here is the code I have written (it is one part of a switch):
if (!DataHelper.DataSourceIsEmpty(dsUp))
...
2
votes
2answers
493 views
Import DataRow in DataTable
i try to Import selected Rows into a DataTable to send it to a function. I go to Button Clickevent an set following Code:
var dt = new DataTable();
foreach (var DataRow in dataGridView1.SelectedRows)
...
2
votes
1answer
400 views
How to bind typed DataTable to DataGridView
With the below code, I am trying to customise the DGV without relying on the knowledge of the actual database column names. But it does not work. Can I know what is the correct way to do it? Thanks.
...
2
votes
7answers
558 views
generic field getter for a DataRow
I try to extend the DataRow object with this generic method :
public static T? Get<T>(this DataRow row, string field) where T : struct
{
if (row.IsNull(field))
return default(T);
else
...
2
votes
1answer
585 views
Convert DataRowCollection to NameValueCollection
I need an elegant way to convert a DataRowCollection to a NameValueCollection.
note: during the conversion I need a section where I can invoke an inflector to tidy up key names
2
votes
2answers
245 views
c# unable to edit datarow in dataset
I'm trying to edit the data in a dataset (change the value in a column on one row), which is not linked to a database. I've been googling for about an hour with no results and no good examples out ...
2
votes
4answers
1k views
If I'm updating a DataRow, do I lock the entire DataTable or just the DataRow?
Suppose I'm accessing a DataTable from multiple threads. If I want to access a particular row, I suspect I need to lock that operation (I could be mistaken about this, but at least I know this way I'm ...
2
votes
3answers
3k views
Compare DataRow collection to List<T>
I have a List<string> and I have a DataTable.
One of the columns in a DataRow is ID. The List holds instances of this ID.
The DataTable gets populated on a Timer.
I want to return items from ...
2
votes
5answers
488 views
what is the correct way to read from a datarow if the cell might be null
I have the following code which seems to blow up if the column in the datarow (dr) is null. what is the correct way to parse out the value from the data row and handle null checks?
...
2
votes
1answer
549 views
DataBinding with a DataRow - problems
I am currently coding a project under c# and am experiencing problems. I'll give a brief description of my form:
It has a datagridview on the bottom half of the form with single row selection, and is ...
2
votes
2answers
9k views
Get Value of Row in Datatable c#
i have a problem with my code.
foreach (DataRow dr in dt_pattern.Rows)
{
part = dr["patternString"].ToString();
if (part != vpart)
{
System.Console.WriteLine(part);
...
2
votes
3answers
1k views
DataRow comparison not working as expected
I'm trying to compare two DataRows in a loop. However, the following if statement doesn't return true:
if (dt1.Rows[0]["Name"] == dt2.Rows[b]["Name"]) {
// This never executes
}
However, if I ...
2
votes
12answers
1k views
Is it better to use the column name or column index on .Net DataSets?
When retrieving values from a DataRow is it better to use the column name or column index?
The column name is more readable and easier to maintain:
int price = (int)dr["Price"];
While column index ...
1
vote
1answer
66 views
compare two datarows
I have a datatable with multiple rows inside it. I have got 1 more row and I want to check if this row is a duplicate of the existing rows in the datatable. So I tried like:
DataTable dataTable = ...
1
vote
2answers
35 views
DataRow: Check for empty (Not "null) fields in DataSet
Hopefully this is an easy one. Is there a way to test for an "empty" field using DataRow? The following work fine for testing against a field with null values, unfortunately, the column I'm dealing ...
1
vote
4answers
63 views
Filter DataTable Efficiently
What's the most efficient way of filtering DataRows in a DataTable? I have a list of integers and want to retrieve all rows (and eventually create a DataTable from them) which match the integers in ...
1
vote
2answers
105 views
How to get Column Value of a DataRow in a Datatable
I have a DataTable which is bind to dataGridview in my code.
When I get datas from database, the gridview works fine. it fills with data.
What I want to do is getting the primary key value of the ...
1
vote
2answers
75 views
copy two columns in a datatable
I have a c# question :
I have 2 datatable A and B both of them contain a column called “move” , I want to create another Datable with 2 columns one with “move” from A the other with “move” from B , I ...
1
vote
4answers
83 views
How can I get a sum for the column “pieces” in a datatable?
How can I get a sum for the column "pieces" in a datatable? Say I had the following table. How can I calculate the "total" pieces for article="milk" and artno="15"?
Columns: article artno ...
1
vote
3answers
181 views
How to bind DataRow to the GridView?
I have one datatable which has four or five columns. I dont know exactly the columns name and its count. But I want to bind the first row of the datatable into the GridView. How to do this? I need all ...