MDL-17491 oracle native driver - now defaulting to it! B-)

This commit is contained in:
stronk7 2009-10-08 15:14:01 +00:00
parent 2c51695987
commit 212f17c354

View File

@ -234,11 +234,17 @@ function setup_DB() {
case 'mssql_n':
$CFG->dbtype = 'mssql';
// continue, no break here
case 'mssql':
$CFG->dblibrary = 'native';
break;
case 'oci8po':
$CFG->dbtype = 'oci';
// continue, no break here
case 'oci':
$CFG->dblibrary = 'native';
break;
case 'mysql' :
if (!extension_loaded('mysqli')) {
$CFG->dblibrary = 'adodb';