1234567891011121314151617181920212223242526272829303132 |
- <?php defined('SYSPATH') or die('No direct access allowed.');
- return array
- (
- 'default' => array
- (
- 'type' => 'MySQL',
- 'connection' => array(
- /**
- * The following options are available for MySQL:
- *
- * string hostname server hostname, or socket
- * string database database name
- * string username database username
- * string password database password
- * boolean persistent use persistent connections?
- * array variables system variables as "key => value" pairs
- *
- * Ports and sockets may be appended to the hostname.
- */
- 'hostname' => 'localhost',
- 'database' => 'hello_world',
- 'username' => 'benchmarkdbuser',
- 'password' => 'benchmarkdbpass',
- 'persistent' => FALSE,
- ),
- 'table_prefix' => '',
- 'charset' => 'utf8',
- 'caching' => FALSE,
- 'profiling' => TRUE,
- )
- );
|