找不到cakephp数据库

前端之家收集整理的这篇文章主要介绍了找不到cakephp数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有使用cakePHP开发的项目,它从不同的数据库获取数据,但如果其中一个数据库某些页面未打开并给我以下错误

Database table tablenae for model moedlname was not found.

..我在这个页面显示了从其他数据库显示的其他数据.

我如何确定数据库是否使用cake脱机,我可以使该模型从另一个地方读取,如缓存文件,直到数据库再次启动.

也许更好的方法是缓存结果并从缓存中读取,只需在需要时命中数据库
<?PHP
$cacheKey = 'myCacheNumber1';
if (($data = Cache::read($cacheKey)) === false) {
    $data = $this->Model->find('all');
    if ($data) {
        Cache::write($cacheKey,$data);
    }
}
?>

这个问题是它假设模型和数据库连接在缓存不存在(或已经过期)时可用,如果不存在,你仍然会得到相同的错误,但频率会肯定会减少.

我认为测试数据库是否可用将需要一些自定义代码技巧,因为连接的蛋糕核心方法假定成功并且在不可用时大量失败.我可能会使用标准的PHP连接方法创建一个组件来控制是否应该尝试加载模型.

<?PHP
$cacheKey = 'myCacheNumber1';
if (($data = Cache::read($cacheKey)) === false) {
    if ($this->DbTest->check('hostname','username','password')) {
        $data = $this->Model->find('all');
        if ($data) {
            Cache::write($cacheKey,$data);
        }
    }
}
?>
<?PHP
// app/controllers/components/db_test.PHP
class DbTestComponent extends Object { 
    function check($hostname,$username,$password) {
        $result = true;
        $link = @MysqL_connect($hostname,$password);
        if (!$link) {
            $result = false;
        }
        @MysqL_close($link);
        return $result;
    }
}
?>
原文链接:https://www.f2er.com/php/136901.html

猜你在找的PHP相关文章