Пример #1
0
 /**
  * Execute the prepared SQL query.
  *
  * @throws \Pop\Db\Adapter\Exception
  * @return void
  */
 public function execute()
 {
     if (null === $this->statement) {
         throw new Exception('Error: The database statement resource is not currently set.');
     }
     $this->statement->execute();
 }
Пример #2
0
 public function execute()
 {
     return parent::execute();
 }