Re: [pgScript patch] Output + bug fix

Поиск
Список
Период
Сортировка
От Mickael Deloison
Тема Re: [pgScript patch] Output + bug fix
Дата
Msg-id 1f8f052b0903061454l1c9340cvd6a93def6f0b5c86@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [pgScript patch] Output + bug fix  (Dave Page <dpage@pgadmin.org>)
Ответы Re: [pgScript patch] Output + bug fix  (Dave Page <dpage@pgadmin.org>)
Список pgadmin-hackers
2009/3/6 Dave Page <dpage@pgadmin.org>:
> Sorry - I meant some pgScript code that would create a message so i
> can figure out where it gets lost.
>> Here is the code you requested, I removed the useless parts:
>>
>> pgQueryThread thread(m_app->connection(), stmt);
>>
>> if (thread.Create() == wxTHREAD_NO_ERROR)
>> {
>>       if (thread.Run() == wxTHREAD_NO_ERROR)
>>       {
>>               // ...
>>       }
>>
>>       if (thread.ReturnCode() != PGRES_COMMAND_OK
>>                       && thread.ReturnCode() != PGRES_TUPLES_OK)
>>       {
>>               // ...
>>               wxString message(stmt + wxT("\n") +
>> -->                   thread.GetMessagesAndClear().Strip(wxString::both));
>>               // ...
>>               (*m_cout) << message << wxT("\n");
>>               // ...
>>       }

This was pgScript code. It's in
pgadmin/pgscript/expressions/pgsExecute.cpp. This is the expression
that executes a query: it displays the warning if the return code was
not PGRES_COMMAND_OK or PGRES_TUPLES_OK.

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Dave Page
Дата:
Сообщение: Re: [pgScript patch] Output + bug fix
Следующее
От: Dave Page
Дата:
Сообщение: Re: [pgScript patch] Output + bug fix