get SqlServer resultset in dataset
C#
3
Posts
3
Posters
0
Views
1
Watching
-
If we get a resultset from a stored procedure in sql server How to get that resultset in dataset in C# Thanks in advance
Gaurav
You can use SqlDataAdapter class to retrieve data into dataset using stored procedures
#region signature my articles #endregion
-
If we get a resultset from a stored procedure in sql server How to get that resultset in dataset in C# Thanks in advance
Gaurav
Use a
SQLDataAdapter
object, and useFill()
method to fill the dataset.All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions