Subject | Re: [IBO] Search mode after post |
---|---|
Author | nibler@t-online.de |
Post date | 2003-11-16T09:05:54Z |
James,
dont use ibquery.append, this causes to fetch all
records from the server. Use ibquery.insert instead !!
Harald
james_027 wrote:
dont use ibquery.append, this causes to fetch all
records from the server. Use ibquery.insert instead !!
Harald
james_027 wrote:
> Hi harald
>
> I dont have any call to refresh. Please take a look if there something
> wrong with what Iam doing.
>
> upon opening the form I put my ibquery in search mode like this
>
> ibquery.search;
>
> if I want to insert a new record, I code it like this
>
> ibquery.append;
>
> after inserting, I code it like this to save the new record
>
> ibquery.post;
>
> what else should I check in order to work properly?
>
> Thanks in advance.
>
>
> James