ADO.NET

ADO.NET Projects

ADO.NET Project 1

ADO.NET Examples

Examples

adplus-dvertising
How to execute multiple SQL statements using a SqlCommand object
Previous Home Next
using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
SqlConnection newConnection = new 
SqlConnection(@"Data Source=R4R-3EFD13BB468\SQLEXPRESS;
initial catalog=newDatabase;integrated security=true;");
protected void Page_Load(object sender, EventArgs e)
{
SqlCommand cmd = new 
SqlCommand
("insert into emp_tbl (nme,age,emp_id) values ('atul', '24','1234');" +
"select nme,age from emp_tbl where emp_id=1234 "+
"update emp_tbl set nme='Anjali' where emp_id=1234" +
"select nme,age from emp_tbl where emp_id=1234 ;",newConnection);
newConnection.Open();
SqlDataReader dr = cmd.ExecuteReader();
if (dr.Read())
{
GridView1.DataSource = dr;
GridView1.DataBind();
}
newConnection.Close();
}
}

OutPut:

Previous Home Next