Subject ZendX_Db_Adapter_Firebird & not seeing new records added by others
Author tomsee7
Hi,

I'm running a php windows service and it opens a connection, selects records, does some stuff, the closes the connection until it runs again later.

The first run all's good but subsequent times no records are visible even though different fb client tools (ibexpert & flamerobin) can see the new records.

Points to note:
1. The ZendX_Db_Adapter_Firebird appears to use the php_interbase extension.
2. Tried changing _beginTransaction() key line:
ibase_trans(IBASE_DEFAULT, $this->_connection) to
ibase_trans( IBASE_WRITE|IBASE_COMMITTED|IBASE_WAIT, $this->_connection) but no difference.

Thanks,
Tom