MINOR remove the sqlite databases from the installer list. (from r100697)

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

View File

@ -73,17 +73,6 @@ 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(
'SQLitePDODatabase',
'SQLite PDO',
'sqlite3/code/SQLitePDODatabaseConfigurationHelper.php',
in_array('sqlite', PDO::getAvailableDrivers()));
DatabaseAdapterRegistry::register(
'SQLite3Database',
'SQLite 3',
'sqlite3/code/SQLite3DatabaseConfigurationHelper.php',
class_exists('SQLite3'),
'');
// Discover any 3rd party ones
DatabaseAdapterRegistry::autodiscover();