0
votes
2answers
34 views
C# DataTable: Add new row throws error using AutoInc field
I have a collection
List<Employee> employees;
I use a DataTable, and load all the records (from MDB table) when Form1.Loads, and add these records to the List (Collectio …
0
votes
1answer
14 views
ASP.NET DataTable output problem
I can't for the life of me work out what I am doing wrong here, despite much searching on SO/Google.
Basically I have a simple DataTable which is held in ViewState and adjusted du …
0
votes
2answers
24 views
Concurrency violation updating a SQL database with a dataadapter
I'm having some trouble updating changes I made to a datatable via a dataadapter. I am getting "Concurrency violation: the UpdateCommand affected 0 of 10 rows"
'Get data
Dim Docs_ …
1
vote
2answers
57 views
List<object[]> using more memory than DataTable?
Guys,
I've always believed that DataTable would consume more memory than a generic List. I am testing loading a DataTable and loading a List from a SQL Server query. In this case, …
0
votes
1answer
49 views
Remove all columns with no data from DataTable
If all the items for a particular column are empty, I want to remove that column from the DataTable. What's the most elegant way to do this operation on all columns in the DataTab …
1
vote
2answers
37 views
Display specific data on asp.net webpage from a microsoft sql express data table
I have been looking around the internet for a way to display specific content from a sql data table. I was hoping that I could display the Content column according to the Id column …
0
votes
3answers
72 views
How do I implement a datatable “group by”?
I would like to implement a "Group By" for my datatable. Has any one any suggestions?
update:
c#, .net 2.0
1
vote
2answers
68 views
Export DataTable to Excel File
Hi,
I have a DataTable with 30+ columns and 6500+ rows.I need to dump the whole DataTable values into an Excel file.Can anyone please help with the C# code.I need each column va …
0
votes
3answers
50 views
How do I specify what the column type a DataGridView chooses to use when using DataTable as its DataSource
I have a column in my DGV that is a custom type to display values of MyObjectType. My DataTable has the column created as MyObjectType, but the DGV creates a DataGridViewTextBox c …
0
votes
0answers
37 views
How do you calculate the size of a datatable object?
In C#, how can you calculate the size of a datatable object in memory?
We're using this to store various data groups, and would like to perform some logging/monitoring to aid in t …
1
vote
3answers
37 views
How to select records from SQL DB that contain the same ID as a .NET datatable records
I'm loading a CSV file containing many thousands of rows into a .NET DataTable that looks something like this:
MyLocalDataTable
SequenceNo,
Etc
I have a table in an SQL database …
0
votes
3answers
46 views
How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)?
Hey,
Is there a elegant way, to bind predefined dataGridView columns with results from sql statement?
Example:
dataGridView1.Columns.Add("EID", "ID");
dataGridView1.Columns.Add( …
0
votes
0answers
44 views
set tag in DataGridViewRow from DataTable automatically
Is there a way to use a column of data from a DataTable to set the tag of a row automatically instead of having to iterate through each row in the DGV to manually assign it?
MyDat …
0
votes
3answers
154 views
How can this code be optimized?
Hello all!
I have a method which in essence converts a datatable to a list of objects which I call 'Bags'. This code is called many times per session, with many sessions concurre …
1
vote
2answers
85 views
C# Assigning a value to DataRow[”haswhatnots”] = hasWhatnots is awful slow.
C# Assigning a value to DataRow["haswhatnots"] = hasWhatnots is awful slow. hasWhatnots is a boolean value.
I have profiled this line and with 560000 hits the execution time is 82 …
