'mysql://dbuser:secret@localhost/kohana' * character_set - Database character set * table_prefix - Database table prefix * object - Enable or disable object results * cache - Enable or disable query caching * escape - Enable automatic query builder escaping */ $config['default'] = array ( 'benchmark' => FALSE, 'persistent' => FALSE, 'connection' => array ( 'type' => 'mysql', 'user' => 'dbuser', 'pass' => 'p@ssw0rd', 'host' => 'localhost', 'port' => FALSE, 'socket' => FALSE, 'database' => 'kohana', 'params' => NULL, ), 'character_set' => 'utf8', 'table_prefix' => '', 'object' => TRUE, 'cache' => FALSE, 'escape' => TRUE );