[1] ErrorException in Db.php line 84
Class '\think\db\connector\Oracle' not found
}
$class = false !== strpos($options['type'], '\\') ? $options['type'] : '\\think\\db\\connector\\' . ucwords($options['type']);
// 记录初始化信息
if (App::$debug) {
Log::record('[ DB ] INIT ' . $options['type'], 'info');
}
if (true === $name) {
return new $class($options);
} else {
self::$instance[$name] = new $class($options);
}
}
return self::$instance[$name];
}
/**
* 数据库连接参数解析
* @static
* @access private
Call Stack
in Db.php line 84
at Error::appShutdown()
Environment Variables是不是以后就不支持ORACLE了? 最佳答案