ODBC SQLNumResultCols broken? - Mailing list pgsql-interfaces

From Bill
Subject ODBC SQLNumResultCols broken?
Date
Msg-id 39F0FDFB.1A08E6AB@cplane.com
Whole thread Raw
Responses Re: ODBC SQLNumResultCols broken?  (Kovacs Zoltan Sandor <tip@pc10.radnoti-szeged.sulinet.hu>)
List pgsql-interfaces
The ODBC book I have claims that if, after execution, a statement
has no result data, then SQLNumResultCols(statement, &ncols) returns
ncols == 0.  TRUE?  FALSE?

If TRUE, then postgresql ODBC driver (latest stuff) is broken because
it always returns the number of '?' there are in the SQL query
statement no matter if any rows were returned by the execute.

What I am really trying to do is test existence of an index "id" in a table.
I call SQLExecute() on a prepared statement that looks like this:
"select id from tablename where id = ?"
Parameter is bound, everything returns success.  Now I can tell if
the id is in the table if any rows were returned from this query.  Is
there some other or better way to do this?

Of course, postgresql ODBC and JDBC drivers are still broken in the
ways I have reported before, but no one seems to care.  8^(

Bill <bouma@cplane.com>





pgsql-interfaces by date:

Previous
From: hubert depesz lubaczewski
Date:
Subject: Re: Help for plpgsql!!
Next
From: Kovacs Zoltan Sandor
Date:
Subject: Re: ODBC SQLNumResultCols broken?