Yii extention for MySQL database with:
'db' => array(
'class' => 'RDbConnection',
'connectionString' => 'mysql:host=localhost;dbname=database',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'schemaCachingDuration' => 3600,
'enableProfiling' => true,
'tablePrefix' => '',
'enableParamLogging' => true,
);
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'),
));
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.