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 June 13th, 2004, 07:25 PM
Juanpla Juanpla is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2004
Posts: 1 Juanpla User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Auto Inc Procedure - Firebird

Hello, my name is Juan and I would like to have a hand to solve this problem:

I have written a Stored Procedure to simulate an autoinc field. It takes two parameters (field and table). Its algorythm is this:
Select the maximum value
if it is null then return 1
else return maximum value+1
When I tried to compile the code below I've received an error message telling me that the character on line 7 (:table) doesn't exist.

Why is this error ocurring?

Thanks for your atention
Juan Pla

/*-------------CODE--------------------------*/
SET TERM ^ ;
CREATE PROCEDURE PK (FIELD VARCHAR(25), TABLE VARCHAR(25))
RETURNS (INC INTEGER)
AS
DECLARE VARIABLE VALUE INTEGER;
begin
SELECT MAX(:FIELD) FROM :TABLE
INTO :VALUE;
if (:VALUE IS NOT NULL) then :INC = :VALUE + 1
ELSE :inc = 1;
suspend;
end
^
SET TERM ; ^

Reply With Quote
  #2  
Old June 14th, 2004, 02:31 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
Hi,

A statement (like SELECT ... FROM mytable) needs to be compiled when creating a stored procedure. You cannot replace column names or table names with parameters.

In Firebird 1.5, you can execute dynamic SQL via the EXECUTE STATEMENT statement - check the release notes on how to do this.

Nevertheless, you DO know that you're way of simulating an auto-inc field is very very multi-user unfriendly, right?
Instead, why don't you use Generators?

--
Martijn Tonies
Database Workbench: works with Firebird, MySQL, InterBase and MSSQL Server
Upscene Productions
http://www.upscene.com
__________________
Martijn Tonies
Database Workbench: developer IDE for Firebird, MySQL, InterBase, MSSQL Server and Oracle
Upscene Productions
http://www.upscene.com

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesFirebird SQL Development > Auto Inc Procedure - Firebird


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 4 hosted by Hostway
Stay green...Green IT