Taco Jung wrote:
Hi,

I'm in the situation where I need to access tables in different databases and looking for a "good" way of using Zend_Db with multiple databases.

Two options here:

in your table definitions, you can set $_schema = 'myschema';

Also, you can pass this information in at table construction time, for example:

$table = new MyTable(array('schema' => 'myOverridingSchemaName');

Does this help your situation?

-ralph

Reply via email to