$ finderr 242
-242 Could not open database table table-name.
The database server cannot begin reading a table. Check the
accompanying ISAM error code for more information. The problem might be
file permissions, a hardware error, or a corrupted system catalog.
Unless the ISAM error code or an operating-system message points to
another cause, run the bcheck or secheck utility to verify file
integrity.
what we encountered mostly in php + informix
is that we did not close cursor correctly
that run out of DB resource!!!
$DbObj=ifx_pconnect("stores7@ifx1","informix","ifxpass");
$SQL="select * from customers" ;
$oRs=ifx_prepare($SQL,$DbObj);
ifx_do($oRs);
$array1=ifx_fetch_row($oRs,"next");
while() .....
ifx_free_result($oRs);
if you are positive it is not timeout issue of apache webpage
try the preceding sample , make the table large
see what happen ??? be careful of cursor free !!!!