I can't find any documentation on how to use sqlite3 in CodeIgniter, but it does say that it is supported.
Here is my current database configuration:
$db['default']['hostname'] = '';
$db['default']['username'] = '';
$db['default']['password'] = '';
$db['default']['database'] = 'db/base.db';
$db['default']['dbdriver'] = 'sqlite3';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
But I get a very undescriptive error on page load
Unable to connect to your database server using the provided settings.
Filename: core/CodeIgniter.php
Line Number: 500
So my question is, why is my config not working, and how can I make it work?