呵呵哒。。。这是什么原因???我模块都没有调用这个数据库!!!!

浏览:379 发布日期:2020/08/10 分类:ThinkPHP5专区
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'tpzhshop.ly_weix_conf' doesn't exist
            $this->PDOStatement->execute();
            // 调试结束
            $this->debug(false, '', $master);
            // 返回结果集
            return $this->getResult($pdo, $procedure);
        } catch (\PDOException $e) {
            if ($this->isBreak($e)) {
                return $this->close()->query($sql, $bind, $master, $pdo);
            }
            throw new PDOException($e, $this->config, $this->getLastsql());
        } catch (\Throwable $e) {
            if ($this->isBreak($e)) {
                return $this->close()->query($sql, $bind, $master, $pdo);
            }
            throw $e;
        } catch (\Exception $e) {
            if ($this->isBreak($e)) {
                return $this->close()->query($sql, $bind, $master, $pdo);
namespace app\Bastge\controller;
use think\Controller;
use think\Request;
use think\Db;

class Index extends Controller{
    public function index(){
        echo 123;exit;
        return view();
    }
    public function main(){
        return view();
    }
}
最佳答案
评论( 相关
后面还有条评论,点击查看>>