Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Call Stored Proc And Return DataSet
Message
From
05/11/2008 14:50:30
John Baird
Coatesville, Pennsylvania, United States
 
 
To
05/11/2008 14:49:48
John Baird
Coatesville, Pennsylvania, United States
General information
Forum:
ASP.NET
Category:
ADO.NET
Environment versions
Environment:
C# 3.0
OS:
Vista
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01359938
Message ID:
01359945
Views:
25
use a sqlAdapter and then call the fill method:
       SqlDataAdapter adapter = new SqlDataAdapter();
        adapter.SelectCommand = oCommand;
        adapter.Fill(oDataSet);
        return oDataSet;
Previous
Reply
Map
View

Click here to load this message in the networking platform