drix47193 2015-10-22 10:51
浏览 45
已采纳

从Zend Framework 1中的应用程序对象获取数据库适配器

I am working on an application written in Zend Framework. I want to create a stand-alone API. I'm copying over from public/index.php, and here is the key code on that:

  1. /** Zend_Application */
  2. require_once 'Zend/Application.php';
  3. // Create application, bootstrap, and run
  4. $application = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
  5. $application->bootstrap()->run();

I have copied that over minus the run() directive, and now I'm trying to write db queries.. I've tried:

  1. $application->_connection; //not declared, fails
  2. $application->_db; //same deal
  3. $application->select(); //same deal

I want to run things like:

$result = $application->_some_connection_object_but_where->query( .. );

Can you help me answer the "but where" part? Thanks

--EDITED INFO--

Also, to answer the great response I had on this, I do have a file called /application/Bootstrap.php with a class called:

  1. class Bootstrap extends Zend_Application_Bootstrap_Bootstrap

and this method for connection:

  1. protected function _initDb()
  2. {
  3. $appConfig = new Zend_Config_Ini('../application/configs/application.ini', APPLICATION_ENV);
  4. Zend_Registry::set('appConfig',$appConfig);
  5. $dbConfig = new Zend_Config_Ini('../application/configs/db.ini', APPLICATION_ENV);
  6. Zend_Registry::set('dbConfig',$dbConfig);
  7. $db = new Zend_Db_Adapter_Pdo_Mysql(array(
  8. 'host' => $dbConfig->database->params->host,
  9. 'username' => $dbConfig->database->params->username,
  10. 'password' => $dbConfig->database->params->password,
  11. 'dbname' => $dbConfig->database->params->dbname,
  12. ));
  13. $db->setFetchMode(Zend_Db::FETCH_ASSOC);
  14. $db->getConnection(); // force a connection... do not wait for 'lazy' connection binding later
  15. Zend_Registry::set('db',$db);
  16. Zend_Db_Table::setDefaultAdapter($db);
  17. }

展开全部

  • 写回答

1条回答 默认 最新

  • doulanyan6455 2015-10-23 00:55
    关注

    If you have bootstrapped your resources in the "standard" way using references in your ./application/config/application.ini file of the form:

    resources.db.adapter = mysql
    resources.db.params.host = localhost
    // etc
    

    then you should be able to get the adapter object from the Zend_Application object using:

    $adapter = $application->getBootstrap()->getResource('db');
    

    Then you can write your db queries against that adapter.

    [Or - even better - feed that adapter into a model that encapsulates/hides the specific db-queries inside a well-defined interface whose implementations will be more testable.]

    Update

    Per request, here is an example of injecting a db-adapter into a model.

    class Application_Model_BaseModel
    {
        protected $db;
    
        public function __construct($db)
        {
            $this->db = $db;
        }
    
    }
    
    class Application_Model_Users extends Application_Model_BaseModel
    {
        public function getVerifiedUsers()
        {
            $select = $this->db->select()
                ->from('users')
                ->where(array(
                    'verified' => true,
                ));
            return $this->db->fetchAll($select);
        }    
    }
    

    Usage would then be:

    $model = new Application_Model_Users($db);
    $users = $model->getVerifiedUsers();
    

    This could be probably tightened further by using Zend_Db_Table_Abstract as the base model, but I intentionally provided a bare-bones example to show what I mean about injecting a db adapter into a model.

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部