Re: Issue in Mapping varchar datatype of Postgre to

Поиск
Список
Период
Сортировка
От Simon Riggs
Тема Re: Issue in Mapping varchar datatype of Postgre to
Дата
Msg-id 1143619707.32384.95.camel@localhost.localdomain
обсуждение исходный текст
Ответ на Issue in Mapping varchar datatype of Postgre to Oracle  (vidisha.shah@tcs.com)
Список pgsql-hackers
On Wed, 2006-03-29 at 11:02 +0530, vidisha.shah@tcs.com wrote:

> CAUSE DETERMINATION 
> ==================== 
> VARCHAR datatype from PostgreSQL is translated by your ODBC driver in
> an unsupported datatype for HSODBC. 
> 
> 
> CAUSE JUSTIFICATION 
> ==================== 
> In the trace file, you get the datatype from postgreSQL  
> ====>1043 VARCHAR(50) 
> 
> then you get the datatype that ODBC driver is mapping to get back to
> Oracle 
> ====>[4464]describeCol: col 2 *pfSqlType = -9 
> 
> If you look at in the Note 252548.1, 
> -9 is SQL_WVARCHAR  
> 
> and unfortunately this ODBC datatype is not supported by the Generic
> Connectivity agent (HSODBC). 
> 

This is not a PostgreSQL problem, it is an Oracle problem and it is
clearly stated as such by them in the report you've posted.

VARCHAR is a standard SQL:2003 datatype, and SQL_WVARCHAR is the
standard ODBC value for that datatype. So this missing functionality
means that the Oracle Generic Connectivity agent has some very basic
features missing. If it were me and I'd paid for it, I'd ask for my
money back.

You'll need to find out what datatypes they do support so you can
spoonfeed something easier to them, possibly using a PostgreSQL view.

Best Regards, Simon Riggs



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Joerg Hessdoerfer
Дата:
Сообщение: Re: Issue in Mapping varchar datatype of Postgre to Oracle
Следующее
От: vidisha.shah@tcs.com
Дата:
Сообщение: Re: [ODBC] Unable to Query the datatype varchar of PostgreSQL Server