/** * 执行sql * @return bool|mixed */ public function execute() { if (!$this->prepare) { return false; } $res = $this->mysql->query($this->prepare); return $res; }