用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1112|回复: 0
收起左侧

MSSQL数据库中,含数字开头的库无法链接。

[复制链接]
发表于 2014-8-4 14:45:02 | 显示全部楼层 |阅读模式
错误提示
Unable to select the specified database: 123fax

数据库链接代码
$db['35fax']['hostname'] = 'xxx.xxx.xxx.xxx';
$db['test']['username'] = 'xxx';
$db['test']['password'] = 'xxx';
$db['test']['database'] = '123abc';
$db['test']['dbdriver'] = 'sqlsrv';
$db['test']['dbprefix'] = '';
$db['test']['pconnect'] = FALSE;
$db['test']['db_debug'] = TRUE;
$db['test']['cache_on'] = FALSE;
$db['test']['cachedir'] = '';
$db['test']['char_set'] = 'utf8';
$db['test']['dbcollat'] = 'utf8_general_ci';
$db['test']['swap_pre'] = '';
$db['test']['autoinit'] = TRUE;
$db['test']['stricton'] = FALSE;


模块代码
$this->load->database();
$this->db_fax=$this->load->database('test',true);


----------------------------------------------
红字部分换成全英文就可以正常运行,用数字开头的就不行。
想问一下如何处理?

本版积分规则