Thread: Re: Microsoft Project and PostgreSQL?

Re: Microsoft Project and PostgreSQL?

From
Daniel Schuchardt
Date:
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