Обсуждение: lo_creat problem?

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

lo_creat problem?

От
Daisuke Maki
Дата:
Hi,

I don't know if this is a perl issue or not but here's the scenario:

Platform: Linux 2.2 kernel (Japanized)
Postgres: 7.03 (compiled with --with-perl and --enable-multibyte )
pgsql_perl: 1.90, 1.81

The problem is very simple. 
All i'm trying to do is to create a Large Object. However,

$conn->lo_creat( PGRES_INV_WRITE | PGRES_INV_READ );
$conn->lo_import ( 'some_filename' );

both return an OID of ZERO, no matter what I do.
It doesn't even return PGRES_InvalidOID on failure.

In fact, the lo_demo.pl, which came with pgsql_perl 1.9, didn't work
either. So I don't think it would be a problem on my script.

Is this a known issue? Is there a way around it?

Any help would be appreciated.
Thanks in advance,
--d


Re: lo_creat problem?

От
Tom Lane
Дата:
Daisuke Maki <daisuke@wafu.ne.jp> writes:
> Platform: Linux 2.2 kernel (Japanized)
> Postgres: 7.03 (compiled with --with-perl and --enable-multibyte )
> pgsql_perl: 1.90, 1.81

> $conn->lo_creat( PGRES_INV_WRITE | PGRES_INV_READ );
> $conn->lo_import ( 'some_filename' );

> both return an OID of ZERO, no matter what I do.

Strange.  It works OK for me with the perl5 interface that's distributed
with Postgres 7.0.* ... which calls itself 1.8.0.  Dunno where you got
"1.81" or "1.90" from, but maybe they're broken.
        regards, tom lane