473,387 Members | 1,621 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Stored Procedure

How do I implement a stored procedure to insert a new member in a database
then return the primary key of that member back to the application to be use
in another table?
Nov 17 '05 #1
6 4006
You could use this SQL code:

SET NOCOUNT ON;
BEGIN TRAN;
INSERT...;
SELECT @@identity AS newID;
COMMIT TRAN;
SET NOCOUNT OFF;

/john

"Leon Shaw" <vn*****@msn.com> wrote in message
news:Oa**************@TK2MSFTNGP11.phx.gbl...
How do I implement a stored procedure to insert a new member in a database
then return the primary key of that member back to the application to be use in another table?

Nov 17 '05 #2
Have your SQL Server query Select @@Identity after it does the insert.
Then you can get the value back like this:
newId = (int)MyCommand.ExecuteScalar();

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"Leon Shaw" <vn*****@msn.com> wrote in message
news:Oa**************@TK2MSFTNGP11.phx.gbl...
How do I implement a stored procedure to insert a new member in a database
then return the primary key of that member back to the application to be use in another table?

Nov 17 '05 #3
Will This Work? And how do I get this MemberId in a variable in code and
pass it to another table?
CREATE PROCEDURE Add_Member
(
@FirstName varchar(50)
@LastName varchar(50)
@etc varchar(50)
)
AS
INSERT INTO Member
(
FirstName,
LastName,
etc
)
VALUES
(
@FirstName
@LastName
@etc
)
SELECT @MemberID = @@IDENTITY

"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
Have your SQL Server query Select @@Identity after it does the insert.
Then you can get the value back like this:
newId = (int)MyCommand.ExecuteScalar();

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"Leon Shaw" <vn*****@msn.com> wrote in message
news:Oa**************@TK2MSFTNGP11.phx.gbl...
How do I implement a stored procedure to insert a new member in a database then return the primary key of that member back to the application to be

use
in another table?


Nov 17 '05 #4
No, don't select the identity value into a private stored procedure variable
or you'll never be able to get to it.
Instead the final line should look like this:
SELECT @@IDENTITY

Alternately you could define @MemberID as an output parameter for your
sproc. Then use ADO.NET parameter objects. After you execute the query,
check that parameter and it should be filled with the identity value.
Here's more info:
http://msdn.microsoft.com/library/de...classtopic.asp
http://msdn.microsoft.com/library/de...isualbasic.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"Leon Shaw" <vn*****@msn.com> wrote in message
news:et**************@TK2MSFTNGP11.phx.gbl...
Will This Work? And how do I get this MemberId in a variable in code and
pass it to another table?
CREATE PROCEDURE Add_Member
(
@FirstName varchar(50)
@LastName varchar(50)
@etc varchar(50)
)
AS
INSERT INTO Member
(
FirstName,
LastName,
etc
)
VALUES
(
@FirstName
@LastName
@etc
)
SELECT @MemberID = @@IDENTITY

"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
Have your SQL Server query Select @@Identity after it does the insert.
Then you can get the value back like this:
newId = (int)MyCommand.ExecuteScalar();

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"Leon Shaw" <vn*****@msn.com> wrote in message
news:Oa**************@TK2MSFTNGP11.phx.gbl...
How do I implement a stored procedure to insert a new member in a database then return the primary key of that member back to the application to
be use
in another table?



Nov 17 '05 #5
So how do I get that identity column inside a variable to be pass to another
table that reference that member?
"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
No, don't select the identity value into a private stored procedure variable or you'll never be able to get to it.
Instead the final line should look like this:
SELECT @@IDENTITY

Alternately you could define @MemberID as an output parameter for your
sproc. Then use ADO.NET parameter objects. After you execute the query,
check that parameter and it should be filled with the identity value.
Here's more info:
http://msdn.microsoft.com/library/de...classtopic.asp http://msdn.microsoft.com/library/de...isualbasic.asp
--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"Leon Shaw" <vn*****@msn.com> wrote in message
news:et**************@TK2MSFTNGP11.phx.gbl...
Will This Work? And how do I get this MemberId in a variable in code and
pass it to another table?
CREATE PROCEDURE Add_Member
(
@FirstName varchar(50)
@LastName varchar(50)
@etc varchar(50)
)
AS
INSERT INTO Member
(
FirstName,
LastName,
etc
)
VALUES
(
@FirstName
@LastName
@etc
)
SELECT @MemberID = @@IDENTITY

"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
Have your SQL Server query Select @@Identity after it does the insert.
Then you can get the value back like this:
newId = (int)MyCommand.ExecuteScalar();

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"Leon Shaw" <vn*****@msn.com> wrote in message
news:Oa**************@TK2MSFTNGP11.phx.gbl...
> How do I implement a stored procedure to insert a new member in a database
> then return the primary key of that member back to the application
to be use
> in another table?
>
>



Nov 17 '05 #6
In the example I gave the identity of the record you just inserted will be
in the newId variable. Then you can pass it wherever you want, perhaps
putting it into a SQLParameter object to call some other query.

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"Leon Shaw" <vn*****@msn.com> wrote in message
news:ei**************@TK2MSFTNGP11.phx.gbl...
So how do I get that identity column inside a variable to be pass to another table that reference that member?
"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
No, don't select the identity value into a private stored procedure

variable
or you'll never be able to get to it.
Instead the final line should look like this:
SELECT @@IDENTITY

Alternately you could define @MemberID as an output parameter for your
sproc. Then use ADO.NET parameter objects. After you execute the query, check that parameter and it should be filled with the identity value.
Here's more info:

http://msdn.microsoft.com/library/de...classtopic.asp

http://msdn.microsoft.com/library/de...isualbasic.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"Leon Shaw" <vn*****@msn.com> wrote in message
news:et**************@TK2MSFTNGP11.phx.gbl...
Will This Work? And how do I get this MemberId in a variable in code and pass it to another table?
CREATE PROCEDURE Add_Member
(
@FirstName varchar(50)
@LastName varchar(50)
@etc varchar(50)
)
AS
INSERT INTO Member
(
FirstName,
LastName,
etc
)
VALUES
(
@FirstName
@LastName
@etc
)
SELECT @MemberID = @@IDENTITY

"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
> Have your SQL Server query Select @@Identity after it does the insert. > Then you can get the value back like this:
> newId = (int)MyCommand.ExecuteScalar();
>
> --
> I hope this helps,
> Steve C. Orr, MCSD
> http://Steve.Orr.net
>
>
> "Leon Shaw" <vn*****@msn.com> wrote in message
> news:Oa**************@TK2MSFTNGP11.phx.gbl...
> > How do I implement a stored procedure to insert a new member in a
database
> > then return the primary key of that member back to the application

to
be
> use
> > in another table?
> >
> >
>
>



Nov 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: dinesh prasad | last post by:
I'm trying to use a servlet to process a form, then send that data to an SQL server stored procedure. I'm using the WebLogic 8 App. server. I am able to retrieve database information, so I know my...
0
by: Nashat Wanly | last post by:
HOW TO: Call a Parameterized Stored Procedure by Using ADO.NET and Visual C# .NET View products that this article applies to. This article was previously published under Q310070 For a Microsoft...
3
by: Rhino | last post by:
I've spent the last couple of hours trying to figure out how to debug a Java stored procedure and am just going in circles. The last straw came when I got "Cannot open input stream for default"...
4
by: Rhino | last post by:
Is it possible for a Java Stored Procedure in DB2 V7.2 (Windows) to pass a Throwable back to the calling program as an OUT parameter? If yes, what datatype should I use when registering the...
8
by: Thomasb | last post by:
With a background in MS SQL Server programming I'm used to temporary tables. Have just started to work with DB2 ver 7 on z/OS and stumbled into the concept of GLOBAL TEMPORARY TABLE. I have...
2
by: Dino L. | last post by:
How can I run stored procedure (MSSQL) ?
0
by: Amber | last post by:
Stored procedures are faster and more efficient than in-line SQL statements. In this article we will look at two SQL Server stored procedures; one using an input parameter and one not, and see how...
3
by: kd | last post by:
Hi All, How to debug a stored procedure? Thanks, kd
7
by: Dabbler | last post by:
I'm using an ObjectDataSource with a stored procedure and am getting the following error when trying to update (ExecuteNonQuery): System.Data.SqlClient.SqlException: Procedure or Function...
2
by: jed | last post by:
I have created this example in sqlexpress ALTER PROCEDURE . @annualtax FLOAT AS BEGIN SELECT begin1,end1,deductedamount,pecentageextra FROM tax
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.