MINOR: added sqlite to the installer (from r100800)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112202 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sminnee 2010-10-13 04:24:31 +00:00
parent 7a3be4418e
commit 9fc052fe58

View File

@ -88,6 +88,13 @@ DatabaseAdapterRegistry::register(
function_exists('pg_query'),
null,
'The <a href="http://php.net/pgsql">pgsql</a> PHP extension is not available. Please install or enable it and refresh this page.');
DatabaseAdapterRegistry::register(
'SQLite3Database',
'SQLite 3.3+',
'sqlite3/code/SQLiteDatabaseConfigurationHelper.php',
class_exists('SQLite3') || class_exists('PDO'),
null,
'The <a href="http://php.net/manual/en/book.sqlite3.php">SQLite3</a> and <a href="http://php.net/manual/en/book.pdo.php">PDO</a> classes are not available. Please install or enable them and refresh this page.');
// Discover any 3rd party ones
DatabaseAdapterRegistry::autodiscover();