从官方的帮助文档得知,CodeIgniter是可以连接SQLite3数据库的,但只是一笔带过,并未给出CodeIgniter连接SQLite3的配置说明,记录下CodeIgniter 3连接SQLite3的方法。
前提条件
连接SQLite3需PDO组件支持,请先确认您的PHP已经安装好PDO组件。
数据库配置文件
假如您的SQLite3数据库文件存放于/application/data/xxx.db3
,修改CodeIgniter 3的数据库配置文件application/config/database.php
内容如下:
$db['default'] = array(
'dsn' => 'sqlite:'.APPPATH.'/data/xxx.db3',
'hostname' => 'localhost',
'username' => '',
'password' => '',
'database' => '',
'dbdriver' => 'pdo',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);
注意:dns
字段那里指定的数据库路径一定要正确,否则查询数据库的时候会报错。