[Cocoapsql-developer] Re: check out submitQuery...
Status: Alpha
Brought to you by:
alkirkus
|
From: Al K. <al...@ki...> - 2002-05-26 14:53:52
|
Hi Ted.
No this does not work for me either. It needs to be investigated
further. I believe the trouble is that the run loop is being interrupted
by the query and the drawRect function does not get called until it is
finished.
This problem should be added as a bug at sourceforge. Then we can get
it worked through once the bugs/features are prioritized.
Bottom line I don't currently have a quick fix but I am sure it is
probably not a huge problem to sort out.
See ya, Al
On Saturday, May 25, 2002, at 11:07 PM, Ted Petrosky wrote:
> al,
>
> I don't think this is working. while the app is off doing the query,
> the status line
> should update to say "Working......".
>
> I have a db here that I am testing against and I have some 6000
> rows..... the
> 'working ....' never gets printed. I have tried a variety of methods
> and none
> seem to work.
>
> Does it work for you?
>
> Ted
>
> from controller.m
>
> - (IBAction)submitQuery:(id)sender
> {
> NSString *oldHistoryPlusCR;
> if(![connection connected]){
> //not connected
> [status setStatusMsg:@"You must connect before submitting
> queries"];
> }else{
> [status setStatusMsg:@"Working . . ."];
> [self updateGui];
>
>
|