MINOR Doc for database configuration helper

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@98789 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sharvey 2010-02-11 07:53:05 +00:00 committed by Sam Minnee
parent 34bad1fc7f
commit af96f8433d

View File

@ -50,7 +50,7 @@ if($envFileExists) {
}
}
// This is a listing of supported databases, so the installer knows about them
// This is a listing of known external databases
$otherDatabaseLocations = array(
'mssql' => array(
'class' => 'MSSQLDatabase',
@ -70,8 +70,9 @@ $otherDatabaseLocations = array(
)
);
// MySQL support comes out of the box with sapphire - others databases
// live in their own module directories. We need to check the existance of them!
// MySQL support comes out of the box with sapphire. Other databases
// live in their own module directories. Let's find out if there
// are any installed and determine if they have a configuration helper.
$foundDatabaseClasses = array('MySQLDatabase' => 'MySQL');
include_once('sapphire/dev/install/DatabaseConfigurationHelper.php');
include_once('sapphire/dev/install/MySQLDatabaseConfigurationHelper.php');