Tagged Questions
The term "datatable" is ambiguous. In .NET 4, it's a class that represents a table of in-memory data. In component based MVC frameworks like JSF and Wicket, it's an UI component that dynamically renders a HTML table based on a collection. For jQuery DataTables plugin, please use [datatables] tag.
56
votes
9answers
14k views
Should I Dispose() DataSet and DataTable?
DataSet and DataTable both implement IDisposable, so, by conventional best practices, I should call their Dispose() methods.
However, from what I've read so far, DataSet and DataTable don't actually ...
28
votes
7answers
62k views
How do you convert a DataTable into a generic list?
Currently, I'm using:
DataTable dt = CreateDataTableInSomeWay();
List<DataRow> list = new List<DataRow>();
foreach (DataRow dr in dt.Rows)
{
list.Add(dr);
}
Is there a ...
27
votes
4answers
5k views
Can we have multiple <tbody> in same <table>?
Can we have multiple <tbody> in same <table>? If yes then in what scenarios we should use multiple <tbody>
26
votes
7answers
39k views
Generic List to DataTable
I have few methods that returns different Generic Lists.
Exists in .net any class static method or whatever to convert any list into a datatable? The only thing that i can imagine is use Reflection ...
24
votes
10answers
7k views
Check for changes to a SQL table?
How can I monitor a MSSQL database for changes to a table without using triggers or modifying the structure of the database in any way? My preferred programming environment is .Net and C#
(edits)
...
19
votes
1answer
5k views
Querying DataColumnCollection with LINQ
I'm trying to perform a simple LINQ query on the Columns property of a DataTable:
from c in myDataTable.Columns.AsQueryable()
select c.ColumnName
However, what I get is this:
Could not find ...
17
votes
6answers
8k views
Datatable vs Dataset
I currently use a datatable to get results from a database which I can use in my code.
However, many example on the web show using a dataset instead and accessing the table(s) through the collections ...
14
votes
4answers
10k views
Convert IEnumerable to DataTable
Is there a nice way to convert an IEnumerable to a DataTable?
I could use reflection to get the properties and the values, but that seems a bit inefficient, is there something build-in?
(I know the ...
14
votes
9answers
46k views
How to select distinct values from datatable?
How to select distinct values from datatable in C#?
For a retrieved data from database, I need to get its distinct value in C#?
14
votes
8answers
25k views
How to read a csv file into a .net datatable
How can I load a csv file into a System.Data.DataTable, creating the datatable based on the CSV file?
Is there a class library for this or can I use ADO.net to connect to the file?
14
votes
3answers
6k views
.NET - Convert Generic Collection to DataTable
I am trying to convert a generic collection (List) to a DataTable. I found the following code to help me do this:
// Sorry about indentation
public class CollectionHelper
{
private CollectionHelper()
...
13
votes
3answers
3k views
What is the memory overhead of storing data in a .NET DataTable?
I'm trying to get a handle on the amount of memory overhead associated with a .NET DataTable, and with individual DataRows within a table.
In other words, how much more memory does a data table occupy ...
11
votes
6answers
12k views
How to select min and max values of a column in a datatable?
For the following datatable column, what is the fastest way to get the min and max values?
AccountLevel
0
1
2
3
11
votes
2answers
972 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, ...
11
votes
4answers
3k views
How to view a DataTable while debugging
I'm just getting started using ADO.NET and DataSets and DataTables. One problem I'm having is it seems pretty hard to tell what values are in the data table when trying to debug.
What are some of the ...
11
votes
7answers
12k views
.Net - Returning DataTables in WCF
I have a WCF service from which I want to return a DataTable. I know that this is often a highly debated topic, as far as whether or not returning DataTables is a good practice. Let's put that aside ...
10
votes
13answers
3k views
Which direction should the arrows point in a sorted table?
In a sorted table, it's common to have an up or a down arrow indicating the sort style. However, I'm having some trouble determining which direction the arrow should point. In an ASC sort, characters ...
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();
}
}
9
votes
5answers
25k 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?
9
votes
8answers
6k views
“Endless scrolling” effect in a HTML table
I am displaying a scrolled data table in a web page. This table has several thousands of dynamic rows, so it is loaded from the server (via AJAX).
The user can scroll up and down, so what I need is ...
8
votes
1answer
555 views
Google API , get value from datatable
google.visualization.events.addListener(
geomap, "regionClick", function(e) {
console.log(e["region"]);
console.log(data.getValue(e["region"],1));
});
I use ...
7
votes
3answers
283 views
DataTable and DataSet should be obsolete now?
Is there any valid use case for DataSet and DataTable now that we have Entity Framework?
Should DataTable/DataSet be considered obsolete?
7
votes
4answers
5k views
OleDB & mixed Excel datatypes : missing data
I have an Excel worksheet I want to read into a datatable - all is well except for one particular column in my Excel sheet. The column, 'ProductID', is a mix of values like ########## and n#########.
...
7
votes
4answers
6k views
Create combined DataTable from two DataTables joined with LINQ. C#
I have the following code that fills dataTable1 and dataTable2 with two simple SQL queries, dataTableSqlJoined is filled from the same tables but joined together.
I'm trying to write a LINQ query ...
7
votes
6answers
1k views
What's the best way to read a tab-delimited text file in C#
We have a text file with about 100,000 rows, about 50 columns per row, most of the data is pretty small (5 to 10 characters or numbers).
This is a pretty simple task, but just wondering what the best ...
7
votes
3answers
599 views
Returning data from database in .net: Return a DataTable or LIst<T>?
I'm struggling with bridging the concepts of good database design with good object orientated design.
Traditionally if I wanted to display a list of news stories in a repeater, I would use something ...
7
votes
5answers
3k views
Using ASP.NET MVC without an ORM
In my ASP MVC application I'm using standard SQL (rather that Linq to SQL or other ORM) to query my database.
I would like to pass the database results to my view and iterate over the results in my ...
7
votes
2answers
3k views
DAL and BLL in .NET
There is this DAL/BLL design suggestion by Microsoft for ASP.NET (2.0) apps. I know some of the alternatives and I've read related questions here on SO. However I wonder if this proposed solution is ...
7
votes
6answers
2k views
.NET DataTable skips rows on Load(DataReader)
I'm trying to populate a DataTable, to build a LocalReport, using the following:
MySqlCommand cmd = new MySqlCommand();
cmd.Connection = new ...
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 ...
6
votes
2answers
440 views
Why does DataTable.Select() return the wrong rows?
The DataTable.Select() function returns the wrong rows with a filter like this...
"booleanColumn1 AND booleanColumn2 AND GuidColumn1 = '00000000-0000-0000-0000-000000000000')"
Making virtually any ...
6
votes
5answers
2k views
WPF DataGrid RowHeader databinding
I have a DataGrid, bound to a DataTable. I want to display text in the RowHeader, to achieve something like this:
Col0 Col1 Col2 Col3
Table | 1 | 3 | 5 | ...
6
votes
2answers
7k views
Convert DataTable to IEnumerable<T>
I am trying to convert a DataTable to an IEnumerable. Where T is a custom type I created. I know I can do it by creating a List but I was think there was a slicker way to do it using IEnumerable. ...
6
votes
2answers
9k views
DataView.RowFilter Vs DataTable.Select() vs DataTable.Rows.Find()
Considering the code below:
Dataview someView = new DataView(sometable)
someView.RowFilter = someFilter;
if(someView.count > 0) { …. }
Quite a number of articles which say Datatable.Select() ...
6
votes
3answers
5k views
How do you change the style of cell in a JQuery.DataTable?
I have a question about setting the style attributes for a data cell in the jQuery.DataTable. I was able to set the width for each column when initializing the dataTable using the following:
oTable ...
6
votes
7answers
4k views
C# DBNull and nullable Types - cleanest form of conversion
I have a DataTable, which has a number of columns. Some of those columns are nullable.
DataTable dt; // Value set.
DataRow dr; // Value set.
// dr["A"] is populated from T-SQL column defined ...
6
votes
3answers
3k views
DataTable Select vs LINQ Select
Any advice on when DataTable.Select should be used versus LINQ Select when dealing with an in-memory DataTable?
I find LINQ syntax easier and more powerful, but I'm not sure if there are performance ...
6
votes
1answer
4k views
c# datatable insert column at position 0
does anyone know the best way to insert a column in a datatable at position 0?
6
votes
3answers
4k views
How to change the datasource on a YUI datagrid after creation
I am using the Yahoo DataTable for which the API is here.
I am having difficulty changing the data once I have rendered the grid once. I am using jQuery to get data via AJAX, or from a client side ...
6
votes
3answers
8k views
DataTable to JSON
I recently needed to serialize a datatable to JSON. Where I'm at we're still on .Net 2.0, so I can't use the JSON serializer in .Net 3.5. I figured this must have been done before, so I went looking ...
6
votes
10answers
6k views
DataTable internal index is corrupted
I am working with a .NET WinForms app in C#, running against the 3.5 .NET framework. In this app, I am setting the .Expression member of a DataColumn in a DataTable, like so:
DataColumn column = ...
6
votes
3answers
24k views
How to display the row index in a JSF datatable
In a JSF dataTable I want to display the row index next to the rows... like:
Column A Column B
1 xxx
2 yyy
I thought that I could use an implicit el variable like #{rowIndex} ...
5
votes
2answers
64 views
Clean implementation of storing current row index
I need to find out what the current Row index from within a foreach loop.
foreach (DataRow row in DataTable[0].Rows)
{
// I do stuff in here with the row, and if it throws an exception
// I ...
5
votes
1answer
61 views
Datatable implements IEnumerable?
In picture :
How does AsEnumerable Methods Knows that the type should be DataRow ?
I've searched in Reflector and Datatable does Not implement IEnumerable..
And the AsEnumerable code is:
public ...
5
votes
3answers
66 views
Datatable inside using?
I have declared datatable inside using block which calls the Dispose method at the end of the scope.
using (DataTable dt = Admin_User_Functions.Admin_KitItems_GetItems())
{
...
5
votes
1answer
128 views
XML string to DataTable in c#
How to Convert XML string to DataTable in c#?
I tried the following code:
public DataTable stam()
{
string xmlData = ...
5
votes
6answers
185 views
How do I limit a foreach loop n runs?
Assuming I have the following loop:
foreach (DataRow dr in table.rows)
{
...
}
How do I keep it from running more often than n times?
5
votes
1answer
2k views
ReadOnlyException DataTable DataRow “Column X is read only.”
I've got a short piece of code that originally created an SqlDataAdapter object over and over.
Trying to streamline my calls a little bit, I replaced the SqlDataAdapter with an SqlCommand and moved ...
5
votes
3answers
6k views
Best way to check if a Data Table has a null value in it
what is the best way to check if a Data Table has a null value in it ?
Most of the time in our scenario, one column will have all null values.
(This datatable is returned by a 3rd party application ...