Yii Extendedactiverecord Enhanced ActiveRecord adds multi-database connection binding capabilities

Source: Internet
Author: User

Extendedactiverecord inherit from Cactiverecord, so the basic function is no different from Cactiverecord

To add support for multiple database connections, a callback to the ConnectionName () method is added, and the usage is consistent with the existing TableName () method, which returns a string of database connection component names.

If the method is not defined, the default database connection (db) is used

The source code is as follows:

Class Extendedactiverecord extends cactiverecord{public    static $db = Array ();    /**     * @return cdbconnection     * @throws cdbexception * * Public    function getdbconnection ()    {        $ ComponentName = $this->connectionname ();        if (Isset (self:: $db [$componentName])) {            return self:: $db [$componentName];        } else {self            :: $db [$ ComponentName] = Yii::app ()->getcomponent ($componentName);            if (self:: $db [$componentName] instanceof Cdbconnection)                return to self:: $db [$componentName];            else {                $message = ' Active Record keyword requires a '. $componentName. ' cdbconnection application component. ';                Yii::log ($message, Clogger::level_error, ' extended ');                throw new CDBException (Yii::t (' Yii ', $message));    }}} Public Function ConnectionName ()    {        return ' db ';    }}

Instance:

Class Somemodelclass extends extendedactiverecord{...    Public Function ConnectionName () {        return ' some-db-connection ';    }    ......}

  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.