Skip to content

Instantly share code, notes, and snippets.

@f0t0n
Created April 5, 2012 17:36
Show Gist options
  • Save f0t0n/2312748 to your computer and use it in GitHub Desktop.
Save f0t0n/2312748 to your computer and use it in GitHub Desktop.
Common setup database connection configuration for Yii framework
<?php
return array(
'connectionString' => 'mysql:host=localhost;dbname=YOUR_DATABASE_NAME',
'emulatePrepare' => true,
'username' => 'YOUR_DATABASE_USERNAME',
'password' => 'YOUR_DATABASE_PASSWORD',
'charset' => 'utf8',
'tablePrefix' => 'tbl_',
'enableProfiling' => true,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment