Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Create Cursor in VFP
Message
From
06/06/2008 05:10:35
 
 
To
06/06/2008 04:58:01
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01322052
Message ID:
01322054
Views:
17
>How to create a temp datetable in c#? Just like in VFP create cursor command.
>
>eg.
>CREATE CURSOR cCustomerSales (cusNo C(5),cusName C(50),invAmt N(10,2),doAmt N(10,2))
>

DataTable cCustomerSales = new DataTable("ccustomersales");
cCustomerSales.Columns.Add(new DataColumn("cusno", System.Type.GetType("System.String")));
cCustomerSales.Columns.Add(new DataColumn("cusname", System.Type.GetType("System.String")));
...
Holger Vorberg
Germany
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform