1993 lines
44 KiB
PHP
Executable File
1993 lines
44 KiB
PHP
Executable File
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/*
|
|
| -------------------------------------------------------------------
|
|
| DATABASE CONNECTIVITY SETTINGS
|
|
| -------------------------------------------------------------------
|
|
| This file will contain the settings needed to access your database.
|
|
|
|
|
| For complete instructions please consult the 'Database Connection'
|
|
| page of the User Guide.
|
|
|
|
|
| -------------------------------------------------------------------
|
|
| EXPLANATION OF VARIABLES
|
|
| -------------------------------------------------------------------
|
|
|
|
|
| ['dsn'] The full DSN string describe a connection to the database.
|
|
| ['hostname'] The hostname of your database server.
|
|
| ['username'] The username used to connect to the database
|
|
| ['password'] The password used to connect to the database
|
|
| ['database'] The name of the database you want to connect to
|
|
| ['dbdriver'] The database driver. e.g.: mysqli.
|
|
| Currently supported:
|
|
| cubrid, ibase, mssql, mysql, mysqli, oci8,
|
|
| odbc, pdo, postgre, sqlite, sqlite3, sqlsrv
|
|
| ['dbprefix'] You can add an optional prefix, which will be added
|
|
| to the table name when using the Query Builder class
|
|
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
|
|
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
|
|
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
|
|
| ['cachedir'] The path to the folder where cache files should be stored
|
|
| ['char_set'] The character set used in communicating with the database
|
|
| ['dbcollat'] The character collation used in communicating with the database
|
|
| NOTE: For MySQL and MySQLi databases, this setting is only used
|
|
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
|
|
| (and in table creation queries made with DB Forge).
|
|
| There is an incompatibility in PHP with mysql_real_escape_string() which
|
|
| can make your site vulnerable to SQL injection if you are using a
|
|
| multi-byte character set and are running versions lower than these.
|
|
| Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
|
|
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
|
|
| ['encrypt'] Whether or not to use an encrypted connection.
|
|
|
|
|
| 'mysql' (deprecated), 'sqlsrv' and 'pdo/sqlsrv' drivers accept TRUE/FALSE
|
|
| 'mysqli' and 'pdo/mysql' drivers accept an array with the following options:
|
|
|
|
|
| 'ssl_key' - Path to the private key file
|
|
| 'ssl_cert' - Path to the public key certificate file
|
|
| 'ssl_ca' - Path to the certificate authority file
|
|
| 'ssl_capath' - Path to a directory containing trusted CA certificates in PEM format
|
|
| 'ssl_cipher' - List of *allowed* ciphers to be used for the encryption, separated by colons (':')
|
|
| 'ssl_verify' - TRUE/FALSE; Whether verify the server certificate or not ('mysqli' only)
|
|
|
|
|
| ['compress'] Whether or not to use client compression (MySQL only)
|
|
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
|
|
| - good for ensuring strict SQL while developing
|
|
| ['ssl_options'] Used to set various SSL options that can be used when making SSL connections.
|
|
| ['failover'] array - A array with 0 or more data for connections if the main should fail.
|
|
| ['save_queries'] TRUE/FALSE - Whether to "save" all executed queries.
|
|
| NOTE: Disabling this will also effectively disable both
|
|
| $this->db->last_query() and profiling of DB queries.
|
|
| When you run a query, with this setting set to TRUE (default),
|
|
| CodeIgniter will store the SQL statement for debugging purposes.
|
|
| However, this may cause high memory usage, especially if you run
|
|
| a lot of SQL queries ... disable this to avoid that problem.
|
|
|
|
|
| The $active_group variable lets you choose which connection group to
|
|
| make active. By default there is only one group (the 'default' group).
|
|
|
|
|
| The $query_builder variables lets you determine whether or not to load
|
|
| the query builder class.
|
|
*/
|
|
$active_group = 'default';
|
|
$query_builder = TRUE;
|
|
|
|
$db['default'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one_lab',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['onedev'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one_lab',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['one_lab_log'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one_lab_log',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['klinik'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one_klinik',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['antrione'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'antrione',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['onelog'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one_log',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['mcutemp'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'temp_mcu',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['riau'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.201',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['pajajaran'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.202',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['toha'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.203',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['cimahi'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.204',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['ngagel'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.241',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['aditya'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.242',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['jemur'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.243',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['mulyo'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.244',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['parkus'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.245',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['hrm'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.246',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['cikditiro'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.191',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['sultan_agung'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.192',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['matraman'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.181',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['bonjer'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.182',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['samanhudi'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.183',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['ragunan'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.184',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['cirebon'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.216',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['veteran'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.171',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['dahlan'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.172',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['plaju'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.173',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['diponegoro'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.161',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['yamin'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.162',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['padang'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.151',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['tegal'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.211',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['manado'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.221',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['pontianak'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.231',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['sudirman'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.156',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['magelang'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.141',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['salatiga'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.146',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['semarang'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.131',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['balikpapan'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.236',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['madiun'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.121',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['makasar'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.126',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['denpasar'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.136',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['tasik'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.176',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['dupang'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.251',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['wonokusumo'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.252',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['tangkuban_perahu'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.81',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['ciliwung'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.82',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['kediri'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.85',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['jember'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.88',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['simokerto'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.253',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['hertasning'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.127',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['tulungagung'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.91',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['hasyim'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.163',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
$db['sumarecon'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.158',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['kompolmaksum'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.132',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['mojokerto'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.248',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'one',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
|
|
|
|
$db['reg_bandung'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.206',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'bandung',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_tegal'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.212',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'tegal',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_manado'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.222',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'manado',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_pontianak'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.230',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'pontianak',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_surabaya'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.240',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'surabaya',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_yogya'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.195',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'yogya',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_jakarta'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.180',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'jakarta',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_cirebon'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.215',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'cirebon',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_palembang'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.170',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'palembang',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_medan'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.160',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'medan',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_padang'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.150',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'padang',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_pekanbaru'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.155',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'pekanbaru',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_magelang'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.140',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'magelang',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_salatiga'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.148',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'salatiga',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_semarang'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.130',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'semarang',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_balikpapan'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.235',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'balikpapan',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_madiun'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.120',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'madiun',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_makasar'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.125',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'makasar',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_denpasar'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.135',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'denpasar',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_tasik'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.175',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'tasikmalaya',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_prospek'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.250',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'prospek',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_sima_malang'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.80',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'malang',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_sima_kediri'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.84',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'kediri',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_sima_jember'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.87',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'jember',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_tulungagung'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.90',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'jember',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_bekasi'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.157',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'jember',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['reg_mojokerto'] = array(
|
|
'dsn' => '',
|
|
'hostname' => '192.168.250.249',
|
|
'username' => 'root',
|
|
'password' => 'pramita102938',
|
|
'database' => 'mojokerto',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['klinik'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one_klinik',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
$db['inventory'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one_inventory',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
$db['inventory_log'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one_inventory_log',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
$db['bloodbank'] = array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => 'sasone102938',
|
|
'database' => 'one_bb',
|
|
'dbdriver' => 'mysqli',
|
|
'dbprefix' => '',
|
|
'pconnect' => FALSE,
|
|
'db_debug' => FALSE,
|
|
'cache_on' => FALSE,
|
|
'cachedir' => '',
|
|
'char_set' => 'utf8',
|
|
'dbcollat' => 'utf8_general_ci',
|
|
'swap_pre' => '',
|
|
'encrypt' => FALSE,
|
|
'compress' => FALSE,
|
|
'stricton' => FALSE,
|
|
'failover' => array(),
|
|
'save_queries' => TRUE
|
|
);
|
|
|
|
|
|
|