如果我们想为某个应用单独配置数据库,可以如下操作(举例为微信平台(wechat)应用单独配置数据库):
### 1、编辑wechat/config/thinkorm.php
```php
<?';
$username = '数据库账户';
$password = '数据库密码';
$charset = '编码';
$prefix = '表前缀';
$system_config['connections数据库名
'database' => $database,
// 数据库用户名
'username' => $username,
// 数据库密码
'password' => $password,
// 数据库连接端口
'hostport' => $hostport,
// 数据库连接参数
'params' => [],
//数据库编码默认采用utf8
'charset' => $charset,
// 数据库表前缀
'prefix' => $prefix,
// 断线重连
'break_reconnect