mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 00:16:46 +02:00
MDL-59581 database: remove mssql reference from top level files
This commit is contained in:
parent
4c00922f2e
commit
2610190674
2 changed files with 1 additions and 2 deletions
|
@ -38,7 +38,7 @@ $CFG = new stdClass();
|
||||||
// will be stored. This database must already have been created //
|
// will be stored. This database must already have been created //
|
||||||
// and a username/password created to access it. //
|
// and a username/password created to access it. //
|
||||||
|
|
||||||
$CFG->dbtype = 'pgsql'; // 'pgsql', 'mariadb', 'mysqli', 'mssql', 'sqlsrv' or 'oci'
|
$CFG->dbtype = 'pgsql'; // 'pgsql', 'mariadb', 'mysqli', 'sqlsrv' or 'oci'
|
||||||
$CFG->dblibrary = 'native'; // 'native' only at the moment
|
$CFG->dblibrary = 'native'; // 'native' only at the moment
|
||||||
$CFG->dbhost = 'localhost'; // eg 'localhost' or 'db.isp.com' or IP
|
$CFG->dbhost = 'localhost'; // eg 'localhost' or 'db.isp.com' or IP
|
||||||
$CFG->dbname = 'moodle'; // database name, eg moodle
|
$CFG->dbname = 'moodle'; // database name, eg moodle
|
||||||
|
|
|
@ -483,7 +483,6 @@ if ($config->stage == INSTALL_DATABASETYPE) {
|
||||||
'pgsql' => moodle_database::get_driver_instance('pgsql', 'native'),
|
'pgsql' => moodle_database::get_driver_instance('pgsql', 'native'),
|
||||||
'oci' => moodle_database::get_driver_instance('oci', 'native'),
|
'oci' => moodle_database::get_driver_instance('oci', 'native'),
|
||||||
'sqlsrv' => moodle_database::get_driver_instance('sqlsrv', 'native'), // MS SQL*Server PHP driver
|
'sqlsrv' => moodle_database::get_driver_instance('sqlsrv', 'native'), // MS SQL*Server PHP driver
|
||||||
'mssql' => moodle_database::get_driver_instance('mssql', 'native'), // FreeTDS driver
|
|
||||||
);
|
);
|
||||||
|
|
||||||
echo '<div class="userinput">';
|
echo '<div class="userinput">';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue