Firebird SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesFirebird SQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old August 22nd, 2005, 02:11 PM
Fredyprogram Fredyprogram is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2005
Posts: 8 Fredyprogram User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 18 m 37 sec
Reputation Power: 0
Stored Procedure

I have the following Stored Procedure:

CREATE PROCEDURE SPR_USER (
CODEUSER VARCHAR(30),
NAME VARCHAR(100),
PASS VARCHAR(20)
AS
BEGIN
INSERT INTO USER
(CODEUSER,NAME,PASS) VALUES
(:CODEUSER,:NAME,PASS);
SUSPEND;
END

I want to change this Stored Procedure to check if allready exists a user with the CODEUSERT that itīs trying to insert before doing the insert or else itīs going to give me an error because the column CODEUSER is a primary key. How can I solve this problem ??

Reply With Quote
  #2  
Old August 23rd, 2005, 12:19 AM
badukist badukist is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2003
Posts: 62 badukist User rank is Corporal (100 - 500 Reputation Level)badukist User rank is Corporal (100 - 500 Reputation Level)badukist User rank is Corporal (100 - 500 Reputation Level)badukist User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 13 h 3 m 18 sec
Reputation Power: 7
Send a message via Yahoo to badukist
Quote:
Originally Posted by Fredyprogram
I have the following Stored Procedure:

CREATE PROCEDURE SPR_USER (
CODEUSER VARCHAR(30),
NAME VARCHAR(100),
PASS VARCHAR(20)
AS
BEGIN
INSERT INTO USER
(CODEUSER,NAME,PASS) VALUES
(:CODEUSER,:NAME,PASS);
SUSPEND;
END

I want to change this Stored Procedure to check if allready exists a user with the CODEUSERT that itīs trying to insert before doing the insert or else itīs going to give me an error because the column CODEUSER is a primary key. How can I solve this problem ??


...
IF (NOT EXISTS(SELECT CODEUSER FROM USER WHERE
CODEUSER = :CODEUSER)) THEN
INSERT INTO USER
(CODEUSER,NAME,PASS) VALUES
(:CODEUSER,:NAME,PASS);

Reply With Quote
  #3  
Old August 23rd, 2005, 06:23 AM
upscene upscene is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 223 upscene User rank is Corporal (100 - 500 Reputation Level)upscene User rank is Corporal (100 - 500 Reputation Level)upscene User rank is Corporal (100 - 500 Reputation Level)upscene User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 7 h 14 m 50 sec
Reputation Power: 8
btw, do not use SUSPEND in executable procedures, there's no need.

With regards,

Martijn Tonies
Database Workbench - tool for InterBase, Firebird, MySQL, Oracle & MS SQL Server
Upscene Productions
http://www.upscene.com
Database development questions? Check the forum!
http://www.databasedevelopmentforum.com

Reply With Quote
  #4  
Old August 23rd, 2005, 12:02 PM
Fredyprogram Fredyprogram is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2005
Posts: 8 Fredyprogram User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 18 m 37 sec
Reputation Power: 0
But how would the procedure return saying that a user allready exists ?

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesFirebird SQL Development > Stored Procedure


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway