|
|
Choosing A Webhost: |
Re: [PATCH] fix for wrong error code returned: msg#00152db.postgresql.odbc
Thanks, patch applied. /D > -----Original Message----- > From: Scot Loach [mailto:sloach@xxxxxxxxxxxx] > Sent: 17 September 2005 18:05 > To: pgsql-odbc@xxxxxxxxxxxxxx; Dave Page > Subject: [PATCH] fix for wrong error code returned > > This patch corrects the previous fix for returning 08S01 > error code for the server disconnecting. > The previous patch sent this error code for any error on the > statement (such as a primary key collision). > > --- statement.c.old 2005-09-17 13:03:28.000000000 -0400 > +++ statement.c 2005-09-17 12:54:31.000000000 -0400 > @@ -1093,7 +1093,7 @@ > CSTR func = "SC_execute"; > ConnectionClass *conn; > IPDFields *ipdopts; > - char was_ok, was_nonfatal,was_fatal; > + char was_ok, was_nonfatal; > QResultClass *res = NULL; > Int2 oldstatus, > numcols; > @@ -1221,15 +1221,19 @@ > { > was_ok = QR_command_successful(res); > was_nonfatal = QR_command_nonfatal(res); > - was_fatal = QR_command_fatal(res); > > if (was_ok) > SC_set_errornumber(self, STMT_OK); > - else if (was_fatal) > - SC_set_errornumber(self,STMT_BAD_ERROR); > else > SC_set_errornumber(self, was_nonfatal > ? STMT_INFO_ONLY : STMT_ERROR_TAKEN_FROM_BACKEND); > > +#ifdef USE_LIBPQ > + if (QR_command_fatal(res) && > PQstatus(conn->pgconn) == CONNECTION_BAD) > + { > + SC_set_errornumber(self, STMT_BAD_ERROR); > + } > +#endif /* USE_LIBPQ */ > + > /* set cursor before the first tuple in the list */ > self->currTuple = -1; > SC_set_current_col(self, -1); > ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@xxxxxxxxxxxxxx so that your message can get through to the mailing list cleanly
|
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | [PATCH] notice handler, Scot Loach |
|---|---|
| Next by Date: | Re: [PATCH] notice handler, Tom Lane |
| Previous by Thread: | [PATCH] fix for wrong error code returned, Scot Loach |
| Next by Thread: | [PATCH] notice handler, Scot Loach |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
Free MagazinesCisco NewsReceive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business. subscribe Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field. subscribe The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business. subscribe Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company. subscribe Total Telecom Total Telecom is "The Economist of the communications industry". subscribe |