Small bug in psqlodbc-09.01 prevents interoperability with LISTSERV

From: Eric Thomas <ERIC(at)LSOFT(dot)COM>
To: "pgsql-bugs(at)postgresql(dot)org" <pgsql-bugs(at)postgresql(dot)org>
Subject: Small bug in psqlodbc-09.01 prevents interoperability with LISTSERV
Date: 2012-08-04 15:43:58
Message-ID: D1A25456C797CC4E8D4589780F54C312119A62A1@LYNX.LSOFT.SE
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-odbc

Because we have customers who think Excel is an RDBMS, our product LISTSERV religiously queries ODBC capabilities at startup and prints warnings as appropriate. A customer tried to use PostgreSQL on Windows and got the following (these are our messages not yours, I am pasting them to show all the version numbers):

> Driver manager version: 03.80.7601.0000
> ODBC driver: PSQLODBC35W.DLL (09.01.0100)
> DBMS: PostgreSQL (9.1.4)
> [FATAL] LIKE operator has no ESCAPE clause, errors will occur!
> [SEVERE] FOR UPDATE clause not supported, no locking will occur

Due to the popularity of underscores in e-mail addresses, we require support for LIKE ... ESCAPE and issue a fatal compatibility warning if the functionality is not present in the DBMS. A fatal warning means that we do not support the DBMS and will not accept incidents involving it. In short, the customer must choose another database, in practice MySQL, the most problematic database we have ever had to support :(

But from what I understand, PostgreSQL does support both the LIKE ... ESCAPE clause and the SELECT ... FOR UPDATE clause. What's more, the '{escape}' sequence seems to be implemented by the ODBC driver, but the driver claims otherwise for some reason. Here is the relevant code from info.c:

case SQL_LIKE_ESCAPE_CLAUSE: /* ODBC 2.0 */

/*
* is there a character that escapes '%' and '_' in a LIKE
* clause? not as far as I can tell
*/
p = "N";
break;

I assume that this was true many years ago and someone forgot to change it when implementing the '{escape}' sequence :) For the second issue, the code is in info30.c:

case SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1:
len = 4;
value = SQL_CA1_NEXT; /* others aren't allowed in ODBC spec */
break;

Here I am puzzled as the Microsoft documentation says no such thing, at least not today, but even in an earlier version of ODBC it would have made no sense. Allowing only the SQL_CA1_NEXT flag would defeat the whole purpose of this information call - which database would not support SQL_FETCH_NEXT? :) Anyway, LISTSERV is looking for the flag SQL_CA1_SELECT_FOR_UPDATE. Note that the same problem exists for other types of cursors, although LISTSERV does not use dynamic cursors and only queries the capabilities forward-only cursors.

This is not a cosmetic issue. LISTSERV will not use any ODBC features reported as unsupported, so we cannot tell customers that "it complains at startup but in practice it works fine" - it doesn't. E-mail addresses containing underscores or percent signs will cause unwanted side effects because LISTSERV thinks that using '{escape}' would result in a syntax error.

For reference, MySQL used to have the same two problems, and showed no interest in fixing them because "You should not use ODBC." Well how exactly am I supposed to support SQL Server and DB2? Wait until Microsoft and IBM switch to the mysql_xxx() API? :) But Oracle provided a solution for the LIKE escape in the ODBC driver. The driver still reports lack of support for the FOR UPDATE clause though, probably because it is only supported by some of their umpteen back-end engines so it varies from one table to another :D

Eric

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Bruce Momjian 2012-08-06 19:20:18 Re: BUG #6126: CC parameter in to_char() behaves incorrectly
Previous Message Bruce Momjian 2012-08-04 14:34:14 Re: BUG #6126: CC parameter in to_char() behaves incorrectly

Browse pgsql-odbc by date

  From Date Subject
Next Message Hiroshi Saito 2012-08-05 06:57:49 Re: Problem with ODBC-Driver on a Windows 7/x 64
Previous Message Josef Springer 2012-08-04 13:58:34 Re: Problem with ODBC-Driver on a Windows 7/x 64