Optimised Service Display, extended SSL module functionality
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
|
||||
return array
|
||||
(
|
||||
'default' => array
|
||||
'old' => array
|
||||
(
|
||||
'type' => 'mysql',
|
||||
'connection' => array(
|
||||
@@ -39,5 +39,46 @@ return array
|
||||
'compress' => FALSE,
|
||||
'profiling' => TRUE,
|
||||
),
|
||||
'pdo' => array(
|
||||
'type' => 'PDO',
|
||||
'connection' => array(
|
||||
/**
|
||||
* The following options are available for PDO:
|
||||
*
|
||||
* string dsn Data Source Name
|
||||
* string username database username
|
||||
* string password database password
|
||||
* boolean persistent use persistent connections?
|
||||
*/
|
||||
'dsn' => 'mysql:host=localhost;dbname=database',
|
||||
'username' => 'username',
|
||||
'password' => 'password',
|
||||
'persistent' => FALSE,
|
||||
),
|
||||
/**
|
||||
* The following extra options are available for PDO:
|
||||
*
|
||||
* string identifier set the escaping identifier
|
||||
*/
|
||||
'table_prefix' => 'ab_',
|
||||
'charset' => 'utf8',
|
||||
'caching' => FALSE,
|
||||
),
|
||||
'default' => array(
|
||||
'type' => 'MySQLi',
|
||||
'connection' => array(
|
||||
'hostname' => 'localhost',
|
||||
'username' => 'username',
|
||||
'password' => 'password',
|
||||
'persistent' => FALSE,
|
||||
'database' => 'database',
|
||||
'ssl' => NULL,
|
||||
),
|
||||
'table_prefix' => 'ab_',
|
||||
'charset' => 'utf8',
|
||||
'caching' => FALSE,
|
||||
'compress' => FALSE,
|
||||
'profiling' => TRUE,
|
||||
),
|
||||
);
|
||||
?>
|
||||
|
Reference in New Issue
Block a user