當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ResultSet類代碼示例

本文整理匯總了PHP中ResultSet的典型用法代碼示例。如果您正苦於以下問題:PHP ResultSet類的具體用法?PHP ResultSet怎麽用?PHP ResultSet使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了ResultSet類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->day = $rs->getInt($startcol + 0);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 1;
     } catch (Exception $e) {
         throw new PropelException("Error populating VCourseDay object", $e);
     }
 }
開發者ID:taryono,項目名稱:school,代碼行數:11,代碼來源:BaseVCourseDay.php

示例2: getResultsByType

 /**
  * Get all the results matching one of the given types
  * @param array ...$types
  * @return ItemPosition[]
  */
 public function getResultsByType($types)
 {
     $types = func_get_args();
     $items = new ResultSet();
     foreach ($this->items as $item) {
         if (call_user_func_array([$item, 'is'], $types)) {
             $items->addItem($item);
         }
     }
     return $items;
 }
開發者ID:serp-spider,項目名稱:core,代碼行數:16,代碼來源:ResultSet.php

示例3: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->coolness = $rs->getFloat($startcol + 1);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 2;
     } catch (Exception $e) {
         throw new PropelException("Error populating FakeForum object", $e);
     }
 }
開發者ID:rande,項目名稱:sfSolrPlugin,代碼行數:12,代碼來源:BaseFakeForum.php

示例4: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->name = $rs->getString($startcol + 1);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 2;
     } catch (Exception $e) {
         throw new PropelException("Error populating Audience object", $e);
     }
 }
開發者ID:soon0009,項目名稱:EMS,代碼行數:12,代碼來源:BaseAudience.php

示例5: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->test_schedule_id = $rs->getInt($startcol + 0);
         $this->location_id = $rs->getInt($startcol + 1);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 2;
     } catch (Exception $e) {
         throw new PropelException("Error populating VTestApplSched2 object", $e);
     }
 }
開發者ID:taryono,項目名稱:school,代碼行數:12,代碼來源:BaseVTestApplSched2.php

示例6: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->total_col_item = $rs->getString($startcol + 1);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 2;
     } catch (Exception $e) {
         throw new PropelException("Error populating VColItemPerCatalog object", $e);
     }
 }
開發者ID:taryono,項目名稱:school,代碼行數:12,代碼來源:BaseVColItemPerCatalog.php

示例7: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->department_id = $rs->getInt($startcol + 0);
         $this->total_collection = $rs->getString($startcol + 1);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 2;
     } catch (Exception $e) {
         throw new PropelException("Error populating VTotalEksemplar object", $e);
     }
 }
開發者ID:taryono,項目名稱:school,代碼行數:12,代碼來源:BaseVTotalEksemplar.php

示例8: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->user_id = $rs->getInt($startcol + 0);
         $this->permission_id = $rs->getInt($startcol + 1);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 2;
     } catch (Exception $e) {
         throw new PropelException("Error populating sfGuardUserPermission object", $e);
     }
 }
開發者ID:net7,項目名稱:Talia-CMS,代碼行數:12,代碼來源:BasesfGuardUserPermission.php

示例9: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->etime_id = $rs->getInt($startcol + 0);
         $this->tag_id = $rs->getInt($startcol + 1);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 2;
     } catch (Exception $e) {
         throw new PropelException("Error populating EtimeTag object", $e);
     }
 }
開發者ID:soon0009,項目名稱:EMS,代碼行數:12,代碼來源:BaseEtimeTag.php

示例10: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->col_location_id = $rs->getInt($startcol + 0);
         $this->cat_category_id = $rs->getInt($startcol + 1);
         $this->total_catalog = $rs->getString($startcol + 2);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 3;
     } catch (Exception $e) {
         throw new PropelException("Error populating VTotalCatalog object", $e);
     }
 }
開發者ID:taryono,項目名稱:school,代碼行數:13,代碼來源:BaseVTotalCatalog.php

示例11: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->user_id = $rs->getInt($startcol + 1);
         $this->peppage_id = $rs->getInt($startcol + 2);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 3;
     } catch (Exception $e) {
         throw new PropelException("Error populating Pepuser object", $e);
     }
 }
開發者ID:Ayaan123,項目名稱:alumnisangam,代碼行數:13,代碼來源:BasePepuser.php

示例12: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->question_id = $rs->getInt($startcol + 0);
         $this->user_id = $rs->getInt($startcol + 1);
         $this->created_at = $rs->getTimestamp($startcol + 2, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 3;
     } catch (Exception $e) {
         throw new PropelException("Error populating Interest object", $e);
     }
 }
開發者ID:arrisray,項目名稱:askeet,代碼行數:13,代碼來源:BaseInterest.php

示例13: getuserRankByExp

 public function getuserRankByExp($xp_point)
 {
     $dbAdapter = $this->getServiceLocator()->get('Zend\\Db\\Adapter\\Adapter');
     $sql = new Sql($dbAdapter);
     $select = $sql->select('player_rank_system');
     $select->where->lessThan('min_exp', $xp_point);
     $select->where->greaterThan('max_exp', $xp_point);
     $statement = $sql->prepareStatementForSqlObject($select);
     $rowset = $statement->execute();
     $resultSet = new ResultSet();
     $resultSet->initialize($rowset);
     return $resultSet;
 }
開發者ID:bladehr8,項目名稱:bowhunter2015,代碼行數:13,代碼來源:PageController.php

示例14: getServiceConfig

 public function getServiceConfig()
 {
     return array('factories' => array('Senjata\\Model\\SenjataTable' => function ($sm) {
         $tableGateway = $sm->get('PrajuritTableGateway');
         $table = new SenjataTable($tableGateway);
         return $table;
     }, 'SenjataTableGateway' => function ($sm) {
         $dbAdapter = $sm->get('Zend\\Db\\Adapter\\Adapter');
         $resultSetPrototype = new ResultSet();
         $resultSetPrototype->setArrayObjectPrototype(new Prajurit());
         return new TableGateway('senjata', $dbAdapter, null, $resultSetPrototype);
     }));
 }
開發者ID:ibnuda,項目名稱:SayaSakit,代碼行數:13,代碼來源:Module.php

示例15: hydrate

 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->student_id = $rs->getInt($startcol + 0);
         $this->time = $rs->getDate($startcol + 1, null);
         $this->code = $rs->getString($startcol + 2);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 3;
     } catch (Exception $e) {
         throw new PropelException("Error populating VAbsenceStudent object", $e);
     }
 }
開發者ID:taryono,項目名稱:school,代碼行數:13,代碼來源:BaseVAbsenceStudent.php


注:本文中的ResultSet類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。