Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


i need code for insert,delete,update adn display records
using stored procedure in C#

Answer Posted / poornima

create proc produrename
@id int,
@name varchar(50),
@Add varchar(50),
@choice Varchar(30)

as
begin
if(@choice='insert')
begin
insert into tablename values(@id,@name,@Add)
end
if(@choice='update')
begin
update tablename set name=@name,Add=@Add where id=@id
end
if(@choice='delete')
begin
delete from tablename where id=@id
end
if(@choice='display')
begin
select * from tablename where id=@id
end
end

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what benefit does your code receive if you decorate it with attributes demanding specific security permissions?

977


What are the server controls in asp.net?

931


What is special types forms

985


Why we are using mvc instead of asp.net? : Asp.Net MVC

996


What is the use of worker process in asp.net?

964


What are the difference between function and stored procedure in .net programming language?

676


Explain about ASP.NET?

1042


What is the equivalent of date() and time() in asp.net?

959


What is the use of session?

910


Which .NET framework supports Web API?

1020


What is the life-span of the items in the viewstate?

914


Is asp.net core faster?

982


Can user control be stored in library?

854


how can we create wcf in asp.net and how can we cll that in to asp.net application?plsss tel me each step clearly

2017


How to reduce the width of textbox in editcommandcolumn of datagrid?

963