Postgresql + Sessions + Large objects - Mailing list pgsql-php

From Grant
Subject Postgresql + Sessions + Large objects
Date
Msg-id Pine.LNX.4.21.0107310952510.12421-100000@webster.conprojan.com.au
Whole thread Raw
List pgsql-php
I am having trouble with the following function working _with_
sessions. If I turn off my session checking function it enables you to
download the file flawlessly, if sessions are turned on then Internet
Explorer displays an error that the file is not available. Is there a way
I can download large objects from postgresql _with_ sessions? Thankyou.

function retrieve_file($id) {
global $dbconn1;

$result1 = pg_exec ($dbconn1, "select data, file_name from files where
id='$id';");
$image_oid = pg_result($result1 ,0, 'data');
$file_name = pg_result($result1 ,0, 'file_name');

header ("Content-disposition: filename=\"$file_name\"");
header("Content-type: application/download");

pg_exec ($dbconn1, "begin transaction;");
$image_handle = pg_loopen ($dbconn1, $image_oid, 'r');

pg_loreadall ($image_handle); pg_loclose ($image_handle);
pg_exec ($dbconn1, "commit transaction;"); }
}

p.s. This has been posted on www.phpbuilder.com


pgsql-php by date:

Previous
From: Ebow Halm
Date:
Subject: calling pl/pgsql stored procs from php
Next
From: "Gyozo Papp"
Date:
Subject: Re: A function for building a where clause.