Re: VARCHAR, CHAR types changed ?

From: lothar(dot)behrens(at)lollisoft(dot)de
To: pgsql-odbc(at)postgresql(dot)org, "Dave Page" <dpage(at)vale-housing(dot)co(dot)uk>
Subject: Re: VARCHAR, CHAR types changed ?
Date: 2005-11-25 23:22:38
Message-ID: 4387AACE.20965.12B6355@localhost
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

Am 25 Nov 2005 um 20:27 hat lothar(dot)behrens(at)lollisoft(dot)de geschrieben:

Hi,

I probably have found the bug. It has to do with keysed driven cursors activated.
After changing the lines in connection.c near 1500, I have got rid of the bug in the
test program. Here is the code:

if (create_keyset)
// res->next is a NULL pointer and as the macro set a TRUE value into
// this structure or what ever it is, this cause the bug.
//
// Must res->next be not NULL or is my variant correct ?
//QR_set_haskeyset(res->next);
QR_set_haskeyset(res);

I still have another problem in my code after this change, but if this is not the bug,
please let me know.

Regards, Lothar

--
Lothar Behrens | Rapid Prototyping ...
Rosmarinstr 3 |
40235 Düsseldorf | www.lollisoft.de

In response to

Responses

Browse pgsql-odbc by date

  From Date Subject
Next Message mrtony77 2005-11-26 01:31:05 doc suggestion
Previous Message lothar.behrens 2005-11-25 19:27:38 Re: VARCHAR, CHAR types changed ?