Re: Cancel a query when user leaves a web page - Mailing list pgsql-php

From ljb
Subject Re: Cancel a query when user leaves a web page
Date
Msg-id bpej5f$54o$1@news.hub.org
Whole thread Raw
In response to Cancel a query when user leaves a web page  (Noel <noel.faux@med.monash.edu.au>)
List pgsql-php
noel.faux@med.monash.edu.au wrote:
> I have a small problem. Is it possible to cancel a running query when a
> person leave or pressed the stop button in my web page.
> ...
> Have tried
> <?php
>     include "functions.php";
>     $connection = pg_connect(host, dbname, user);
> ?>
> <html><body onunload(<?close_connection($connection)?>)>
...

This will never work, as you found. The Javascript action is client-side
and PHP is server-side.

Try using register_shutdown_function() to register a function which will
call pg_cancel_query(). As long as PHP isn't ignoring user aborts (see
ignore_user_abort()), your query will be cancelled when the user hits STOP.
Another way is to ignore user aborts, and while waiting for the
asynchronous query to finish, keep calling connection_aborted() to see if
you are still connected to the user; if not you cancel the query and exit.

pgsql-php by date:

Previous
From: Noel
Date:
Subject: Cancel a query when user leaves a web page
Next
From: "Muhyiddin A.M Hayat"
Date:
Subject: Re: Cancel a query when user leaves a web page