Re: Can't get more than 255 chars out of memo field in Acc

Поиск
Список
Период
Сортировка
От Jeff Eckermann
Тема Re: Can't get more than 255 chars out of memo field in Acc
Дата
Msg-id 20021127200835.58606.qmail@web20801.mail.yahoo.com
обсуждение исходный текст
Ответ на Re: Can't get more than 255 chars out of memo field in Acc  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Can't get more than 255 chars out of memo field in Acc  (Benjamin Scherrey <scherrey@proteus-tech.com>)
Re: Can't get more than 255 chars out of memo field in Acc  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-odbc
--- Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Jeff Eckermann <jeff_eckermann@yahoo.com> writes:
> > The implication is, there is no workaround.  You
> will
> > need to change the table definitions in your
> > PostgreSQL database to use varchar(n) datatypes
> > whereever you want Access to see text.
>
> I wonder whether we could/should hack our ODBC
> driver to report "text"
> columns as "varchar(n)" (and if so, what n should we
> use)?  Seems like
> enough people want to use Access that this would be
> a useful option.
>
>             regards, tom lane

The problem lies in the Access distinction between
"text" type, which is fully functional but limited in
size (the OP's problem), and "memo", which allows much
more storage, but is limited in functionality: "memo"
fields cannot be indexed, sorted, grouped by, joined
against etc.

The driver can presently render text as "text" or as
"memo", depending on the chosen configuration.  I
don't see how it could reasonably distinguish between
two text fields so as to call one "text" and the other
"memo".

I would say that this is just one of those quirks that
an Access user/developer will need to be aware of.
Which is to be discussed in another thread ...


__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Can't get more than 255 chars out of memo field in Acc
Следующее
От: Jeff Eckermann
Дата:
Сообщение: Re: Can't get more than 255 chars out of memo field in Acc