Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Adding a row to a dataset
Message
From
06/08/2004 14:12:04
 
 
To
06/08/2004 14:08:28
Mike Cole
Yellow Lab Technologies
Stanley, Iowa, United States
General information
Forum:
ASP.NET
Category:
ADO.NET
Miscellaneous
Thread ID:
00931376
Message ID:
00931386
Views:
17
This message has been marked as the solution to the initial question of the thread.
Oh, OK...to define columns in a table...



DataTable DtDeductions = new DataTable();
DtDeductions.Columns.Add("DeductID",typeof(System.String));
DtDeductions.Columns.Add("DeductDate",typeof(System.DateTime));
DtDeductions.Columns.Add("Amount",typeof(System.Decimal));
DtDeductions.Columns.Add("Approved",typeof(System.Boolean));


Hope that helps...
Kevin
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform