Postgresql + Sessions + Large objects

Поиск
Список
Период
Сортировка
От Grant
Тема Postgresql + Sessions + Large objects
Дата
Msg-id Pine.LNX.4.21.0107310952510.12421-100000@webster.conprojan.com.au
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Ebow Halm
Дата:
Сообщение: calling pl/pgsql stored procs from php
Следующее
От: "Gyozo Papp"
Дата:
Сообщение: Re: A function for building a where clause.