RSol / RDB

Yii extention for MySQL database
5 stars 4 forks source link

RDB

Yii extention for MySQL database with:

Requirements

Install

    'db' => array(
        'class' => 'RDbConnection',
        'connectionString' => 'mysql:host=localhost;dbname=database',
        'emulatePrepare' => true,
        'username' => 'root',
        'password' => '',
        'charset' => 'utf8',
        'schemaCachingDuration' => 3600,
        'enableProfiling' => true,
        'tablePrefix' => '',
        'enableParamLogging' => true,
    );

Exemple

MULTI INSERT

    Yii::app()->db->createCommand()
        ->insert('table', array(
            array('field'=>1),
            array('field'=>2),
            array('field'=>3),
            array('field'=>4),
            array('field'=>5),
            ...
            array('field'=>'n'),
        ));

INSERT IGNORE ...

    Yii::app()->db->createCommand()
        ->insertIgnore('table', array(
            'keyfield'=>1,
            'field'=>0,
        ));

INSERT ... ON DUPLICATE KEY UPDATE

    Yii::app()->db->createCommand()
        ->insertUpdate('table', array(
            'keyfield'=>1,
            'field'=>0,
        ), array(
            'field'=>new CDbExpression('field+1'),
        ));

License

RDB is licensed under New BSD license. That allows proprietary use, and for the software released under the license to be incorporated into proprietary products. Works based on the material may be released under a proprietary license or as closed source software. It is possible for something to be distributed with the BSD License and some other license to apply as well.