Search Postgresql Archives

issue with lo_lseek - it returns 4

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,
I'm trying to get lo size via libpq before starting reading it (postgres server 8.3.5). lo_lseek always returns 4 (actual size is > 1M).
I query table with "select photo from employee where id='xxxx'". It returns lo oid integer as expected. Then I use following code to obtain size of the lo object:
    int lobj_fd = lo_open(conn, lobjId, INV_READ);  // returns valid fd, ok

    lo_lseek(conn, lobj_fd, 0L, SEEK_END );
    size = lo_tell(conn, lobj_fd);   // always returns 4, error?

Is it possible to obtain lo object size before reading it?

Thank you
Konstantin


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux