Re: psqlODBC 'ERROR: invalid input syntax for integer: "

Поиск
Список
Период
Сортировка
От Michael Goei
Тема Re: psqlODBC 'ERROR: invalid input syntax for integer: "
Дата
Msg-id C969C878B71ED311AA2500104B973EF5632761@WWW
обсуждение исходный текст
Ответы Re: psqlODBC 'ERROR: invalid input syntax for integer: "  ("Greg Campbell" <greg.campbell@us.michelin.com>)
Список pgsql-odbc
I'm attempting to link the postgres table with MS Access, via the ODBC
driver.  After the link process, when I open the linked table from within MS
Access, an error is generated.  When I inspect the connection log, I find
the following entry (SQL auto-generated by MS Access/ODBC):

conn=122491600, query='SELECT
"id","unid","rid","trxtype","bilb","entjobcustid"  FROM "public"."trx"
WHERE "id" = 'A' OR "id" = 'Ø' OR "id" = 'Ù' OR "id" = 'Ú' OR "id" =
'Û' OR "id" = 'Ü' OR "id" = 'Ý' OR "id" = 'Þ' OR "id" = 'ß' OR "id" =
'à''
ERROR from backend during send_query: 'ERROR:  invalid input syntax for
integer: "A"'
STATEMENT ERROR: func=SC_execute, desc='', errnum=7, errmsg='Error while
executing the query'

I believe that MS Access (or ODBC) is misinterpreting the id field.  It's
actually defined as a custom domain of type int4, but because of the
misinterpretation, MS Access is trying to select a page full of records
using erroneous SQL (it assumes that the "id" field is character instead of
int4).

When I create a test table and specify that the attribute "id" is of type
int4 (instead of a custom int4 datatype), then MS Access/ODBC can open the
table from it's GUI properly.  So, I've traced the problem down to a
misinterpretation of the custom domain.

I'm looking for a solution that will allow MS Access/ODBC to recognize the
int4 domain and open the table properly.

Thanks,

mg

-----Original Message-----
From: Peter Eisentraut [mailto:peter_e@gmx.net]
Sent: Wednesday, March 30, 2005 10:08 AM
To: Michael Goei
Cc: 'pgsql-odbc@postgresql.org'
Subject: Re: [ODBC] psqlODBC 'ERROR: invalid input syntax for integer:
"A"'


Michael Goei wrote:
> Can someone please help me solve this problem please?

Well, the column is defined as an integer and you are trying to put
non-numeric characters in it.  Why is that?

--
Peter Eisentraut
http://developer.postgresql.org/~petere/

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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: SQL_CHAR, SQL_INTEGER or SQL_BIT datatype problem
Следующее
От: Kelly Burkhart
Дата:
Сообщение: Re: 32-bit ints on 64-bit linux