Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link SQL Related Articles: Calling Interbase Generator stored procedure 2004-05-22 -- Geoff Bomford Newsgroups: softvelocity.clarion.databasedrivers
> I have an aplication that needs to update a interbase database,
> i set up the process, it works but the database use a "Generator" that
> stores some data to number the records on the database
>
> using php the instruction is
> gen_id(Doc_ID,1)
> how can i implement this?
>
> My config is C55, Interbase Open 6.0.2.0
gen_id(Doc_ID,1) returns the next unique identifier for the file. If you
call this function you will know what value needs to go into the primary key
field before you add the record. You will need a prop:SQL which has a LONG
(or string, I suppose) as the datatype in the first field.
eg.
DummyLong{Prop:SQL} = 'CALL gen_id(Doc_ID,1)'
NEXT(DummyLong)
MyFile:PrimaryKeyField = DumL:DummyLong
! Prime other field values
ADD(MyFile)
Today is November 23, 2024, 3:26 am This article has been viewed 35221 times. Google search has resulted in 116 hits on this article since January 25, 2004.
|
|