Subject | Re: POSTING DATA from a TIBOQUERY Field inhibits use of the Query fields. |
---|---|
Author | jack_engleman |
Post date | 2006-10-23T23:37:05Z |
--- In IBObjects@yahoogroups.com, "Alan McDonald" <alan@...> wrote:
FieldByName('PICKUPDATE').AsString as a paremeter and those functions
and procedures do not see a null pickupdate and after those procedures
I was calling a commit transaction. That commit is working since all
of the rest of the program runs correctly as far as I can tell from my
beta sites. That statement is good until I hear from one of my
customers about another error.
I have been going into the code and I have changed this area by
creating a variable to hold the values to use in those routines where
the field values worked before.
I am still somewhat concerned that I have other areas of the program
where the code worked with the BDE and may not with IBOojects due to
this discrepency, so I am going through about 148,000 of application
code to find other areas of I may posting data and using the values
from a query as I did before.
Best Regards
Jack
>commit after
> > I have converted my application over from BDE to IBOojects and I am
> > running into a problem. I used data from my query after doing a post
> > on the data. I then use the data in the Query for some other functions
> > before finishing my task. With the BDE this worked OK. Now I notice
> > that once I post the data, my data is not retained in the Query. In
> > the example below Message 4 is OK and Message 5 is Blank( no data ).
> >
> > ShowMessage('4 Res OK: ' + FieldByName('PICKUPDATE').AsString);
> > Post;
> > ShowMessage('5 Res OK: ' + FieldByName('PICKUPDATE').AsString);
> >
> > Is there an option to allow this behavior or do I have to change my
> > code. Changing the code could be a ardous process in that I have a
> > lot of code and I would have to check every place I am doing a post to
> > fix the problem.
> >
> > Thanks in Advance
> >
> > Jack Engleman
> I'm not sure how you have setup your transactions. Do you call
> post? do you have a caClose action as your CommitAction?AFter the Post, then I have some other routines I call with the
> Alan
>
FieldByName('PICKUPDATE').AsString as a paremeter and those functions
and procedures do not see a null pickupdate and after those procedures
I was calling a commit transaction. That commit is working since all
of the rest of the program runs correctly as far as I can tell from my
beta sites. That statement is good until I hear from one of my
customers about another error.
I have been going into the code and I have changed this area by
creating a variable to hold the values to use in those routines where
the field values worked before.
I am still somewhat concerned that I have other areas of the program
where the code worked with the BDE and may not with IBOojects due to
this discrepency, so I am going through about 148,000 of application
code to find other areas of I may posting data and using the values
from a query as I did before.
Best Regards
Jack