Subject | Re: [IBO] Adding records |
---|---|
Author | Florian Hector |
Post date | 2004-01-24T20:54:05Z |
> If I must determine first whether the PK exists, what method would beYou could pass the values of the new record to a stored procedure, the SP checks if the PK already
> best (for efficiency). Should I perform an INSERT and trap for
> errors, or do a query for that PK and (somehow) save the cursor so
> that the resulting UPDATE need not perform essentially another
> search? (That last part wasn't expressed very clearly.)
>
exists and if so, updates the record. Otherwise, it inserts the record.
Florian