Congratulations to all the winners of April 2013, they have won INR 3400 cash and INR 20147 worth prizes !
DotNetFunda.Com Logo
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 19385 |  Welcome, Guest!   Register  Login
 Home > Code Snippets > Others > code for webservice that returns DataSet? ...
Srilu.Nayini577

code for webservice that returns DataSet?

 Code Snippet posted by: Srilu.Nayini577 | Posted on: 8/14/2012 | Category: Others Codes | Views: 385 | Status: [Member] | Points: 40 | Alert Moderator   


using system.Data;
using System.Data.SqlClient ;

[WebMethod]
public DataSet GetEmpData()
{

sqlconnection con=new sqlconnection("Data Source=serverName;User Id=id;password=password;Initial Catalog=DataBaseName");

sqlDataAdapter da=new sqlDataAdapter("select * from Emp",con);
DataSet ds=new DataSet();
da.Fill(ds,"a");
return ds;
}

SRILATHA
.Net Developer
Found interesting? Add this to:


>> Write Response - Respond to this post and get points

More codes snippets

About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 5/18/2013 10:42:11 AM