Обсуждение: Re: [HACKERS] Are we losing momentum?

Поиск
Список
Период
Сортировка

Re: [HACKERS] Are we losing momentum?

От
"Dave Page"
Дата:

> -----Original Message-----
> From: Andreas Pflug [mailto:Andreas.Pflug@web.de]
> Sent: 15 April 2003 12:16
> To: pgadmin-hackers@postgresql.org
> Subject: Re: [pgadmin-hackers] [HACKERS] Are we losing momentum?
>
>
> >
> >
> >If anyone feels like chipping in there is still plenty to be done
> >including object view/create dialogues, an autoconf build system,
> >documentation, data editor and more.
> >
> >
> >
> I'll probably implement a data editor within the next days.

Oh, OK. That'll be useful :-). Just a right-click-table -> Edit type of
grid as we discussed before I assume?

Regards, Dave.


Re: [HACKERS] Are we losing momentum?

От
Andreas Pflug
Дата:
Dave Page wrote:

>Oh, OK. That'll be useful :-). Just a right-click-table -> Edit type of
>grid as we discussed before I assume?
>
>
You bet!

As a prerequisite, pgQueryThread is extracted from ctlSQLResult. Also
useful for other long-running queries (VACUUM)
thread=new pgThread(PGconn, query);
thread->Create(); // to run
thread->IsRunning() // status
thread->Delete(); // to abort
if (thread->ReturnCode() == PGRES_TUPLES_OK)
    thread->DataSet() // resulting pgSet

Information at you fingertips... stored in PostgreSQL! :->

Regards,
Andreas