Skip to content

RSol/RDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

RDB

Yii extention for MySQL database with:

  • INSERT INTO table (field) VALUES (1),(2)....
  • INSERT IGNORE
  • INSERT ... ON DUPLICATE KEY UPDATE

Requirements

Install

  • Copy files "RDbCommand.php" and "RDbConnection.php" into your "components" directory.
  • In your main config write in db section 'class' param like this
	'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.

About

Yii extention for MySQL database

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages