Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Call Stored Proc And Return DataSet
Message
De
05/11/2008 14:50:30
John Baird
Coatesville, Pennsylvanie, États-Unis
 
 
À
05/11/2008 14:49:48
John Baird
Coatesville, Pennsylvanie, États-Unis
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Versions des environnements
Environment:
C# 3.0
OS:
Vista
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01359938
Message ID:
01359945
Vues:
28
use a sqlAdapter and then call the fill method:
       SqlDataAdapter adapter = new SqlDataAdapter();
        adapter.SelectCommand = oCommand;
        adapter.Fill(oDataSet);
        return oDataSet;
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform