コード例 #1
0
ファイル: Update.php プロジェクト: icetomcat/database_adapter
 public function execute(array $params = array())
 {
     parent::execute($params);
     return $this->statment->rowCount();
 }
コード例 #2
0
ファイル: Insert.php プロジェクト: icetomcat/database_adapter
 public function execute(array $params = [])
 {
     parent::execute($params);
     return $this->context["adapter"]->lastInsertId();
 }