Обсуждение: Re: Microsoft Project and PostgreSQL?

Поиск
Список
Период
Сортировка

Re: Microsoft Project and PostgreSQL?

От
Daniel Schuchardt
Дата:
Klaus Harbo schrieb:

> according to the manual.  A simple test with PostgreSQL results in an
> error something like 'Unknown data type "lo"'.

It seems that you try to access binary data fields. In postgresql the
type lo (BLOB) is implemented as oid or bytea. Read in the archives.

Try

CREATE DOMAIN lo AS oid;

Daniel