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