Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / DataTable

DataTable

DataTable

Great Reads

by Jörgen Andersson
A high performance extension for creating a DataTable from a Generic collection.
by Petr Ivankov
Application of abstract approach to database domain
by TweakBird
Accessing Value from System.Data.DataTable
by Andrew Rissing
Technically, the best approach here for speed and flexibility is to do the following:public class TestClass{ private const string EMP_ID = "EmpId"; public void MyTestMethod() { //GetData fetches data from the database using a SQL query DataTable dt =...

Latest Articles

by Jörgen Andersson
A high performance extension for creating a DataTable from a Generic collection.
by Petr Ivankov
Application of abstract approach to database domain
by TweakBird
Accessing Value from System.Data.DataTable
by Andrew Rissing
Technically, the best approach here for speed and flexibility is to do the following:public class TestClass{ private const string EMP_ID = "EmpId"; public void MyTestMethod() { //GetData fetches data from the database using a SQL query DataTable dt =...

All Articles

Sort by Score

DataTable 

by TweakBird
Accessing Value from System.Data.DataTable
by Andrew Rissing
Technically, the best approach here for speed and flexibility is to do the following:public class TestClass{ private const string EMP_ID = "EmpId"; public void MyTestMethod() { //GetData fetches data from the database using a SQL query DataTable dt =...
by A.J.Wegierski
int empId = dt.Columns[EMP_ID].Ordinal;...int empId = Convert.ToInt32(dRow[empId]);
by Shweta Lodha
Automatic numbering for the primary key column
by IssaharNoam
Simple and customizable Chat Conversation control, with DataTable datasource, inspired by SMS application balloons in OnePlus One Android smartphone.
by OriginalGriff
There is a problem with accessing Excel files via OleDb which contain more than 255 columns: they are truncated and need to be fetched using ranges. But what do you do with DataTables after that?
by Hazem Torab
Generate reasonable sample data for you GridView without using databases.
by Emiliano Musso
A quick method to convert a CSV file in XML
by Thakkar Amit
Code for converting the EntityCollection of a DataTable.
by Jerry Burch
Quickly create a spreadsheet from Datatable using Interop and the Clipboard
by ashkanpower
How to create Crystal report document dynamically from a list of objects in applications without database
by ASP.NET Community
Here is a simplified class to create Excel file from DataTable just Pass DataTable and Preferred location on server to generate. Call the
by Aadhar Joshi
Creating job in sql server which automates taking backup of all stored procedures and functions in physical drive.
by Ramesh_Joshi
This tip shows how to customize PDF created with the jQuery DataTables plug-in.
by Tajwer Jalal
Data Entry Form made Easy, Enabled / Disabled controls on Data Entry Form
by Brad Joss
Export a System.Data.DataTable/DataSet into a T-SQL script that when run creates a #TEMP table of the same definition filled with data.
by Abdul Ahad Monty
Convert DataTable to List using Generics.
by techcap
DataTable.Select performance test and how to improve it
by leopard447
How to do distinct raw data population in a DataTable
by David C. Williams
When building an ADO.NET DataTable dynamically in your code, each column name must be unique or you get a System.Data.DuplicateNameException. If you don't know at design time that the columns you will be adding are certain to have unique names, you can use this method to avoid a runtime error.
by ASP.NET Community
Hi friends..... Many of guys are trying or working on menus for binding it dynamically. i've the solution for ithere , i m putting sample code to
by Stefan Vincent Haug
Helper method to apply sorting from DataTables.js parameters in C#
by Santhosh Kumar Jayaraman
This is an alternative for "Export DataTable to Excel with Formatting in C#".
by Vishal.KumarSingh
Export Data from a Entity DataSource / GridView / Datatable in ASP.NET to Excel 2007(.xlsx) format with proper formatting and no warning messages
by Paul Brower
This tip will allow you to return the value from column X, where column Y matches your filter
by Er. Puneet Goel
Now export your table in Excel across all browsers and enable quick filter and paging
by DrABELL
3 different techniques of adding hyperlinked image to ASP.NET GridView in data-centric RIA
by SrikantSahu
Jquery Datatable already provides individual column filters. However, we can leverage that to create our custom filter that works similar to Excel filter.
by DiponRoy
The aim of this helper class is to divide a large IEnumerable into multiple small list.
by Chakravarthi Elchuri
Display data in Multi nested gridview using C# in ASP.NET
by DrABELL
ASP.NET GridView control hosting another GridView in data-centric web applications
by yuvalsol
Print DataTable, DataView, DataSet, DataRow[] to Console, StringBuilder or Stream
by Emiliano Musso
How to save DataGrid column's properties for further re-use
by DiponRoy
The aim of this helper class is to divide a large datatable into multiple small datatables.
by Adam Covitch
It is common to configure back-end database tables to contain a column with an auto-generated ID unique to each row. This tip describes how to sync the ID generated by the database back to the application layer.