2011-04-27 09:10:39 +00:00
|
|
|
<?php
|
|
|
|
class Application_Model_Naf5 extends Zend_Db_Table_Abstract
|
|
|
|
{
|
|
|
|
protected $_name = 'tabnaf5';
|
2011-09-27 15:33:24 +00:00
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$dbConfig = new Zend_Config_Ini(APPLICATION_PATH.'/configs/databases.ini');
|
|
|
|
$this->_db = Zend_Db::factory($dbConfig->db->sdv1);
|
|
|
|
}
|
|
|
|
|
2011-04-27 09:10:39 +00:00
|
|
|
}
|
|
|
|
|