DelphiFAQ Home Search:

Having a generator generate a string (00001) instead of an integer (1)

 

commentsThis article has not been rated yet. After reading, feel free to leave comments and rate it.

Question:

How to do my generator generate '00001' and not 1? I want my generator to generate a string representation of a number with leading zeroes.

Answer:

InterBase does not have a lot of string functions. You could either write a user-defined function (UDF) - the manual provides an example for a basic string function implemented as an UDF. The downside is that you're going platform specific then.

Or you could use write some (slower) SQL code in your trigger:

I = gen_id(MYGEN, 1);
S = cast(I as varchar(6));

     if (S like '_') then
  S = '00000' || S
else if (S like '__') then
  S = '0000' || S
else if (S like '___') then
  S = '000' || S
else if (S like '____') then
  S = '00' || S
else if (S like '_____') then
  S = '0' || S;


Comments:

 

 

Email address (not necessary):

Rate as
Hide my email when showing my comment.
Please notify me once a day about new comments on this topic.
Please provide a valid email address if you select this option.
 
It seems that you are
from Washington, US .

Info/ Feedback on this

Show city and country
Show country only
Hide my location
Leave your comment here:
Please type in the code:
photo Add a picture:

Please do not post inappropriate pictures. Inappropriate pictures include pictures of minors and nudity. The owner of this web site reserves the right to delete such material.