Re: longchar data type??

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: longchar data type??
Дата
Msg-id 11307.1137716417@sss.pgh.pa.us
обсуждение исходный текст
Ответ на longchar data type??  (Ben Davis <bendavis78@gmail.com>)
Ответы Re: longchar data type??  (Ludek Finstrle <luf@pzkagis.cz>)
Re: longchar data type??  (Ben Davis <bendavis78@gmail.com>)
Список pgsql-odbc
Ben Davis <bendavis78@gmail.com> writes:
> Hi all.  I'm desparately trying to get Microsoft Project to connect to work
> with my postgresql server via ODBC.  For some reason,  MS Project tries to
> create a column with the datatype  "longchar"  when it should be
> "longvarchar".   Is it possible to tweak the psqlodbc source code so that it
> will accept the "longchar" type and convert it to "text" ??   I'd be happy
> to write a patch if someone can point me in the right direction...

Seems like it might work to just go

    CREATE DOMAIN longchar AS text;


            regards, tom lane

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

Предыдущее
От: Ben Davis
Дата:
Сообщение: longchar data type??
Следующее
От: zhaoxin
Дата:
Сообщение: Re: some question about SavePoint ?