From 246c8d497c820cfb546fcfbc16513d72ebead6ba Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Sun, 13 May 2012 14:28:25 +0200 Subject: [PATCH] MDL-26553 add sqlsrv to list of available db types in config-dist.php --- config-dist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-dist.php b/config-dist.php index 4b3534fa32b..986d2ba92c8 100644 --- a/config-dist.php +++ b/config-dist.php @@ -38,7 +38,7 @@ $CFG = new stdClass(); // will be stored. This database must already have been created // // and a username/password created to access it. // -$CFG->dbtype = 'pgsql'; // 'pgsql', 'mysqli', 'mssql' or 'oci' +$CFG->dbtype = 'pgsql'; // 'pgsql', 'mysqli', 'mssql', 'sqlsrv' or 'oci' $CFG->dblibrary = 'native'; // 'native' only at the moment $CFG->dbhost = 'localhost'; // eg 'localhost' or 'db.isp.com' or IP $CFG->dbname = 'moodle'; // database name, eg moodle