PQexecParams and wchar_t

From: Rob <motorhead9876(at)yahoo(dot)com>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: PQexecParams and wchar_t
Date: 2007-08-21 20:03:21
Message-ID: 736324.21426.qm@web54606.mail.re2.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Does anyone have an example of passing a UTF8 wchar_t character string to PQexecParams() working? For the life of me I can't get it to work. The best I've gotten is the first character of the string is added to my table.

The database uses UTF8 encoding, but no combination of parameters to PQexecParams that I've found gets the whole string into my function. I'm guessing that since that PQexecParams takes an array of const char * that the interface has no way to guess that the parameters are actually wide characters. And since (for english encoding) the data is stored in the first byte of the two byte character, the interface only grabs the first byte of the wide string, thinking the second byte is a null terminator.

Specifying the length of the wchar parameter makes no difference. Is there any way to tell the interface that the parameter is a wide character string?

Any help greatly appreciated.

Rob


---------------------------------
Pinpoint customers who are looking for what you sell.

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Jeroen T. Vermeulen 2007-08-21 20:33:55 Re: PQexecParams and wchar_t
Previous Message Jeroen T. Vermeulen 2007-08-21 11:39:27 Re: Query performance