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();
}
} 最佳答案