Subject | Re: [IBO] IBOTable: Record not located for update |
---|---|
Author | Robert Osowiecki |
Post date | 2005-09-09T13:28:33Z |
Lester Caine wrote:
I'm not going to complain about it, because other IBO advatages are great.
GeneratorLink you mentioned.
Thanks!
R.
>Client/Server database working is completely different to BDE !But I read promices, that TIBO* components are compatibile :). Well, OK,
>
>
I'm not going to complain about it, because other IBO advatages are great.
>In order to access the record using a value generated in the server, youThat's new matter for me... is GeneratorLink some kind of property?
>need to know what it is. But if you let the server generate it when you
>add the record, then you don't know it's value.
>SO in order for IBO to be able to handle a new record it has
>GeneratorLink
>
>CREATE TRIGGER "APPOINTIDINSERT" FOR "APPOINTMENT"May trigger looks exactly like that (the same source?). I'll check that
>ACTIVE BEFORE INSERT POSITION 0
>AS
>BEGIN
> IF ( NEW.APPOINT_ID IS NULL OR NEW.APPOINT_ID = 0 ) THEN
> BEGIN
> NEW.APPOINT_ID = GEN_ID(CONTENT_ID_GEN, 1);
> END
>END
>
>
>
GeneratorLink you mentioned.
Thanks!
R.