look, i create the connection (firebird) with $foo=ibase_pconnect(...), then I execute a statement $bar=$foo->ibase_query(...), then i perform some operation an return the control to the navigator, but keeping every object in the session, and at this point everything is ok and i know that all is working fine.
Well, when the navigator comes back to the server (a GET or POST) and i try to do this...
$bar2=$foo->ibase_query(...), i receive a (debugging) message notifying me that 'invalid database handle (no active connection)', i mean, the connection was lost even with pconnect...
Then, the question is ...
could connections remain through sessions ?, I know that the variables, arrays and objects can do (and they do it), but the connection could/should ?, if not ...
is there any way to do it ?
thanks in advance and sorry my poor English