亲,是不是不支持ORACLE了

浏览:1895 发布日期:2016/09/12 分类:ThinkPHP5专区
刚从git上下了最新的tp5,(2016/09/11 05:58),发现不支持ORACLE了[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了?
最佳答案
评论( 相关
后面还有条评论,点击查看>>