Re: I want to modify "pgConn::ExecuteSet" - Mailing list pgadmin-hackers

From Dave Page
Subject Re: I want to modify "pgConn::ExecuteSet"
Date
Msg-id 937d27e10902050330x3c73976cmca23db0e75da9f42@mail.gmail.com
Whole thread Raw
In response to I want to modify "pgConn::ExecuteSet"  (Quan Zongliang <quanzongliang@gmail.com>)
Responses Re: I want to modify "pgConn::ExecuteSet"
List pgadmin-hackers
On Thu, Feb 5, 2009 at 11:08 AM, Quan Zongliang <quanzongliang@gmail.com> wrote:
> Hi, all
>
> Now, in pgConn class, the definition is:
> pgSet *pgConn::ExecuteSet(const wxString& sql)
>
> I want to modify it to new definition:
> pgSet *pgConn::ExecuteSet(const wxString& sql, bool quiet = false)
>
> When quiet is true, don't pop error message.
>
> Because in import function, it allows user-defined expression.
> When generate preview, send the expression to DB to validate it.
> If not quiet, a lot of error message will be poped.

Do you need to use ExecuteSet for this? ExecuteVoid already has a
reportError flag which can be used to stop it logging error messages.

--
Dave Page
EnterpriseDB UK:   http://www.enterprisedb.com

pgadmin-hackers by date:

Previous
From: svn@pgadmin.org
Date:
Subject: SVN Commit by dpage: r7578 - trunk/pgadmin3/pgadmin/schema
Next
From: Quan Zongliang
Date:
Subject: Re: I want to modify "pgConn::ExecuteSet"