Wrox Programmer Forums
|
BOOK: Professional C#, 2nd and 3rd Editions
This is the forum to discuss the Wrox book Professional C#, 3rd Edition by Simon Robinson, Christian Nagel, Karli Watson, Jay Glynn, Morgan Skinner, Bill Evjen; ISBN: 9780764557590
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Professional C#, 2nd and 3rd Editions section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 27th, 2004, 09:04 AM
Authorized User
 
Join Date: Apr 2004
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to ranakdinesh
Default Sql server Stored procedure

i have a procedure in Sql Server named ADDItem. which accepts four parameters and then save them in the database table employee.how i can call that procedure and pass parameters using C# and ADo. net

dinesh Rana
__________________
dinesh Rana
 
Old May 27th, 2004, 03:21 PM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 1,998
Thanks: 0
Thanked 3 Times in 3 Posts
Default

SQLConnection cn = New SQLConnection(strConnectionString);
SQLDataAdapter adp = New SQLDataAdapter;
adp.InsertCommand = New SQLCommand("ADDItem", cn);

adp.InsertCommand.Parameters.Add("@Param1", SQLDbType.VarChar, 10).Value = strValue;
... repeat 3 times ...

cn.Open();
adp.InsertCommand.ExecuteNonQuery();
cn.Close();

Something like that.

Brian
 
Old May 29th, 2004, 12:08 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 996
Thanks: 2
Thanked 11 Times in 11 Posts
Send a message via Yahoo to melvik
Default

if u use SqlCommandObj & set that in visual useing VS.NET Tolls u only to set its Params like;

Code:
SqlConn.Open();
SqlCommandObj.Parameters["@Param1"].Value = Param1;
SqlCommandObj.Parameters["@Param2"].Value = Param2;
SqlCommandObj.Parameters["@Param3"].Value = Param3;
SqlCommandObj.Parameters["@Param4"].Value = Param4;
SqlCommandObj.ExecuteReader();
SqlConn.Close();
Always:),
Hovik Melkomian.





Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP.NET & SQL Server 2K Stored Procedure kwilliams ASP.NET 2.0 Basics 7 May 10th, 2006 12:55 AM
No 'New Stored Procedure" in server explorer jkusmanto VS.NET 2002/2003 0 May 3rd, 2006 03:24 PM
SQL Server Stored Procedure doug SQL Server 2000 2 February 22nd, 2005 03:04 PM
SQL Stored Procedure... babloo81 SQL Server ASP 1 December 8th, 2003 03:38 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.