示例#1
0
 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);
     }
 }
示例#2
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->student_id = $rs->getString($startcol + 0);
         $this->datetime = $rs->getTimestamp($startcol + 1, null);
         $this->status = $rs->getString($startcol + 2);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 3;
     } catch (Exception $e) {
         throw new PropelException("Error populating Attendance object", $e);
     }
 }
示例#3
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->name = $rs->getString($startcol + 1);
         $this->type_status = $rs->getString($startcol + 2);
         $this->created = $rs->getTimestamp($startcol + 3, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 4;
     } catch (Exception $e) {
         throw new PropelException("Error populating NgStatusApplicant object", $e);
     }
 }
示例#4
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->user_id = $rs->getInt($startcol + 1);
         $this->title = $rs->getString($startcol + 2);
         $this->body = $rs->getString($startcol + 3);
         $this->created_at = $rs->getTimestamp($startcol + 4, null);
         $this->updated_at = $rs->getTimestamp($startcol + 5, null);
         $this->interested_users = $rs->getInt($startcol + 6);
         $this->stripped_title = $rs->getString($startcol + 7);
         $this->html_body = $rs->getString($startcol + 8);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 9;
     } catch (Exception $e) {
         throw new PropelException("Error populating Question object", $e);
     }
 }
示例#5
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->payer = $rs->getInt($startcol + 1);
         $this->academic_cost_id = $rs->getInt($startcol + 2);
         $this->job_id = $rs->getInt($startcol + 3);
         $this->academic_process_id = $rs->getInt($startcol + 4);
         $this->amount = $rs->getFloat($startcol + 5);
         $this->created_at = $rs->getTimestamp($startcol + 6, null);
         $this->updated_at = $rs->getTimestamp($startcol + 7, null);
         $this->payer_type = $rs->getString($startcol + 8);
         $this->receivable = $rs->getFloat($startcol + 9);
         $this->paid = $rs->getFloat($startcol + 10);
         $this->status = $rs->getString($startcol + 11);
         $this->comments = $rs->getString($startcol + 12);
         $this->payment_model_id = $rs->getInt($startcol + 13);
         $this->transaction_status_id = $rs->getInt($startcol + 14);
         $this->paid_at = $rs->getTimestamp($startcol + 15, null);
         $this->year = $rs->getFloat($startcol + 16);
         $this->month = $rs->getString($startcol + 17);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 18;
     } catch (Exception $e) {
         throw new PropelException("Error populating VPaymentJournal object", $e);
     }
 }
示例#6
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->code = $rs->getString($startcol + 1);
         $this->name = $rs->getString($startcol + 2);
         $this->course_model = $rs->getString($startcol + 3);
         $this->ordered = $rs->getInt($startcol + 4);
         $this->created = $rs->getTimestamp($startcol + 5, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 6;
     } catch (Exception $e) {
         throw new PropelException("Error populating ClassLevel object", $e);
     }
 }
示例#7
0
 /**
  * Hydrates (populates) the object variables with values from the database resultset.
  *
  * An offset (1-based "start column") is specified so that objects can be hydrated
  * with a subset of the columns in the resultset rows.  This is needed, for example,
  * for results of JOIN queries where the resultset row includes columns from two or
  * more tables.
  *
  * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
  * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
  * @return     int next starting column
  * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
  */
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->log_uid = $rs->getString($startcol + 0);
         $this->log_status = $rs->getString($startcol + 1);
         $this->log_ip = $rs->getString($startcol + 2);
         $this->log_sid = $rs->getString($startcol + 3);
         $this->log_init_date = $rs->getTimestamp($startcol + 4, null);
         $this->log_end_date = $rs->getTimestamp($startcol + 5, null);
         $this->log_client_hostname = $rs->getString($startcol + 6);
         $this->usr_uid = $rs->getString($startcol + 7);
         $this->resetModified();
         $this->setNew(false);
         // FIXME - using NUM_COLUMNS may be clearer.
         return $startcol + 8;
         // 8 = LoginLogPeer::NUM_COLUMNS - LoginLogPeer::NUM_LAZY_LOAD_COLUMNS).
     } catch (Exception $e) {
         throw new PropelException("Error populating LoginLog object", $e);
     }
 }
示例#8
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->label = $rs->getString($startcol + 1);
         $this->application_number = $rs->getString($startcol + 2);
         $this->register_number = $rs->getString($startcol + 3);
         $this->registration_date = $rs->getTimestamp($startcol + 4, null);
         $this->from_system = $rs->getInt($startcol + 5);
         $this->kind = $rs->getString($startcol + 6);
         $this->application_date = $rs->getTimestamp($startcol + 7, null);
         $this->status = $rs->getString($startcol + 8);
         $this->expires_on = $rs->getTimestamp($startcol + 9, null);
         $this->publications = $rs->getString($startcol + 10);
         $this->vienna_classes = $rs->getString($startcol + 11);
         $this->colors = $rs->getString($startcol + 12);
         $this->nice_classes = $rs->getString($startcol + 13);
         $this->rights_owner = $rs->getString($startcol + 14);
         $this->rights_owner_id = $rs->getString($startcol + 15);
         $this->rights_owner_address = $rs->getString($startcol + 16);
         $this->rights_representative = $rs->getString($startcol + 17);
         $this->rights_representative_id = $rs->getString($startcol + 18);
         $this->rights_representative_address = $rs->getString($startcol + 19);
         $this->office_of_origin = $rs->getString($startcol + 20);
         $this->designated_contracting_party = $rs->getString($startcol + 21);
         $this->image = $rs->getInt($startcol + 22);
         $this->contestation = $rs->getTimestamp($startcol + 23, null);
         $this->created_at = $rs->getTimestamp($startcol + 24, null);
         $this->updated_at = $rs->getTimestamp($startcol + 25, null);
         $this->publication_status = $rs->getString($startcol + 26);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 27;
     } catch (Exception $e) {
         throw new PropelException("Error populating Trademark object", $e);
     }
 }
 /**
  * Hydrates (populates) the object variables with values from the database resultset.
  *
  * An offset (1-based "start column") is specified so that objects can be hydrated
  * with a subset of the columns in the resultset rows.  This is needed, for example,
  * for results of JOIN queries where the resultset row includes columns from two or
  * more tables.
  *
  * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
  * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
  * @return     int next starting column
  * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
  */
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->name = $rs->getString($startcol + 1);
         $this->created_at = $rs->getTimestamp($startcol + 2, null);
         $this->deleted_at = $rs->getTimestamp($startcol + 3, null);
         $this->updated_at = $rs->getTimestamp($startcol + 4, null);
         $this->created_user_id = $rs->getInt($startcol + 5);
         $this->schema_id = $rs->getInt($startcol + 6);
         $this->timeslice = $rs->getTimestamp($startcol + 7, null);
         $this->resetModified();
         $this->setNew(false);
         // FIXME - using NUM_COLUMNS may be clearer.
         return $startcol + 8;
         // 8 = SchemaHasVersionPeer::NUM_COLUMNS - SchemaHasVersionPeer::NUM_LAZY_LOAD_COLUMNS).
     } catch (Exception $e) {
         throw new PropelException("Error populating SchemaHasVersion object", $e);
     }
 }
示例#10
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->group_id = $rs->getString($startcol + 1);
         $this->uuid = $rs->getString($startcol + 2);
         $this->entity = $rs->getString($startcol + 3);
         $this->entity_id = $rs->getInt($startcol + 4);
         $this->name = $rs->getString($startcol + 5);
         $this->mime_type = $rs->getString($startcol + 6);
         $this->size = $rs->getInt($startcol + 7);
         $this->suffix = $rs->getString($startcol + 8);
         $this->title = $rs->getString($startcol + 9);
         $this->description = $rs->getString($startcol + 10);
         $this->uploaded_by = $rs->getInt($startcol + 11);
         $this->created_at = $rs->getTimestamp($startcol + 12, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 13;
     } catch (Exception $e) {
         throw new PropelException("Error populating sfFileGallery object", $e);
     }
 }
示例#11
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->cur13_ekskul_id = $rs->getInt($startcol + 1);
         $this->grade_spec_id = $rs->getInt($startcol + 2);
         $this->grade = $rs->getFloat($startcol + 3);
         $this->remark = $rs->getString($startcol + 4);
         $this->grade_scale = $rs->getFloat($startcol + 5);
         $this->total_value = $rs->getFloat($startcol + 6);
         $this->avg_value = $rs->getFloat($startcol + 7);
         $this->created_at = $rs->getTimestamp($startcol + 8, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 9;
     } catch (Exception $e) {
         throw new PropelException("Error populating Cur13GradeEkskul object", $e);
     }
 }
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->recommendable_model = $rs->getString($startcol + 1);
         $this->recommendable_id = $rs->getString($startcol + 2);
         $this->user_id = $rs->getInt($startcol + 3);
         $this->created_at = $rs->getTimestamp($startcol + 4, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 5;
     } catch (Exception $e) {
         throw new PropelException("Error populating sfUserRecommendation object", $e);
     }
 }
示例#13
0
 /**
  * Hydrates (populates) the object variables with values from the database resultset.
  *
  * An offset (1-based "start column") is specified so that objects can be hydrated
  * with a subset of the columns in the resultset rows.  This is needed, for example,
  * for results of JOIN queries where the resultset row includes columns from two or
  * more tables.
  *
  * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
  * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
  * @return     int next starting column
  * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
  */
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->run_time = $rs->getTimestamp($startcol + 1, null);
         $this->run_description = $rs->getString($startcol + 2);
         $this->object_type = $rs->getString($startcol + 3);
         $this->object_id = $rs->getInt($startcol + 4);
         $this->event_time = $rs->getTimestamp($startcol + 5, null);
         $this->event_type = $rs->getString($startcol + 6);
         $this->event_description = $rs->getString($startcol + 7);
         $this->registry_uri = $rs->getString($startcol + 8);
         $this->resetModified();
         $this->setNew(false);
         // FIXME - using NUM_COLUMNS may be clearer.
         return $startcol + 9;
         // 9 = BatchPeer::NUM_COLUMNS - BatchPeer::NUM_LAZY_LOAD_COLUMNS).
     } catch (Exception $e) {
         throw new PropelException("Error populating Batch object", $e);
     }
 }
示例#14
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->title = $rs->getString($startcol + 1);
         $this->slug = $rs->getString($startcol + 2);
         $this->status_id = $rs->getInt($startcol + 3);
         $this->category_id = $rs->getInt($startcol + 4);
         $this->published = $rs->getBoolean($startcol + 5);
         $this->media_potential = $rs->getBoolean($startcol + 6);
         $this->description = $rs->getString($startcol + 7);
         $this->notes = $rs->getString($startcol + 8);
         $this->image_url = $rs->getString($startcol + 9);
         $this->updated_at = $rs->getTimestamp($startcol + 10, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 11;
     } catch (Exception $e) {
         throw new PropelException("Error populating Event object", $e);
     }
 }
示例#15
0
 /**
  * Hydrates (populates) the object variables with values from the database resultset.
  *
  * An offset (1-based "start column") is specified so that objects can be hydrated
  * with a subset of the columns in the resultset rows.  This is needed, for example,
  * for results of JOIN queries where the resultset row includes columns from two or
  * more tables.
  *
  * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
  * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
  * @return     int next starting column
  * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
  */
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->usr_uid = $rs->getString($startcol + 0);
         $this->usr_last_update_date = $rs->getTimestamp($startcol + 1, null);
         $this->usr_logged_next_time = $rs->getInt($startcol + 2);
         $this->usr_password_history = $rs->getString($startcol + 3);
         $this->resetModified();
         $this->setNew(false);
         // FIXME - using NUM_COLUMNS may be clearer.
         return $startcol + 4;
         // 4 = UsersPropertiesPeer::NUM_COLUMNS - UsersPropertiesPeer::NUM_LAZY_LOAD_COLUMNS).
     } catch (Exception $e) {
         throw new PropelException("Error populating UsersProperties object", $e);
     }
 }
示例#16
0
 /**
  * Hydrates (populates) the object variables with values from the database resultset.
  *
  * An offset (1-based "start column") is specified so that objects can be hydrated
  * with a subset of the columns in the resultset rows.  This is needed, for example,
  * for results of JOIN queries where the resultset row includes columns from two or
  * more tables.
  *
  * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
  * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
  * @return     int next starting column
  * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
  */
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->app_uid = $rs->getString($startcol + 0);
         $this->usr_uid = $rs->getString($startcol + 1);
         $this->note_date = $rs->getTimestamp($startcol + 2, null);
         $this->note_content = $rs->getString($startcol + 3);
         $this->note_type = $rs->getString($startcol + 4);
         $this->note_availability = $rs->getString($startcol + 5);
         $this->note_origin_obj = $rs->getString($startcol + 6);
         $this->note_affected_obj1 = $rs->getString($startcol + 7);
         $this->note_affected_obj2 = $rs->getString($startcol + 8);
         $this->note_recipients = $rs->getString($startcol + 9);
         $this->resetModified();
         $this->setNew(false);
         // FIXME - using NUM_COLUMNS may be clearer.
         return $startcol + 10;
         // 10 = AppNotesPeer::NUM_COLUMNS - AppNotesPeer::NUM_LAZY_LOAD_COLUMNS).
     } catch (Exception $e) {
         throw new PropelException("Error populating AppNotes object", $e);
     }
 }
示例#17
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->employee_id = $rs->getInt($startcol + 1);
         $this->academic_calendar_id = $rs->getInt($startcol + 2);
         $this->status = $rs->getInt($startcol + 3);
         $this->start = $rs->getTimestamp($startcol + 4, null);
         $this->date_in = $rs->getDate($startcol + 5, null);
         $this->datang = $rs->getTime($startcol + 6, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 7;
     } catch (Exception $e) {
         throw new PropelException("Error populating EmployeeAbsenceDev object", $e);
     }
 }
示例#18
0
 /**
  * Hydrates (populates) the object variables with values from the database resultset.
  *
  * An offset (1-based "start column") is specified so that objects can be hydrated
  * with a subset of the columns in the resultset rows.  This is needed, for example,
  * for results of JOIN queries where the resultset row includes columns from two or
  * more tables.
  *
  * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
  * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
  * @return     int next starting column
  * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
  */
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->folder_uid = $rs->getString($startcol + 0);
         $this->folder_parent_uid = $rs->getString($startcol + 1);
         $this->folder_name = $rs->getString($startcol + 2);
         $this->folder_create_date = $rs->getTimestamp($startcol + 3, null);
         $this->folder_update_date = $rs->getTimestamp($startcol + 4, null);
         $this->resetModified();
         $this->setNew(false);
         // FIXME - using NUM_COLUMNS may be clearer.
         return $startcol + 5;
         // 5 = AppFolderPeer::NUM_COLUMNS - AppFolderPeer::NUM_LAZY_LOAD_COLUMNS).
     } catch (Exception $e) {
         throw new PropelException("Error populating AppFolder object", $e);
     }
 }
示例#19
0
 /**
  * Hydrates (populates) the object variables with values from the database resultset.
  *
  * An offset (1-based "start column") is specified so that objects can be hydrated
  * with a subset of the columns in the resultset rows.  This is needed, for example,
  * for results of JOIN queries where the resultset row includes columns from two or
  * more tables.
  *
  * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
  * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
  * @return     int next starting column
  * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
  */
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->app_uid = $rs->getString($startcol + 0);
         $this->del_index = $rs->getInt($startcol + 1);
         $this->del_previous = $rs->getInt($startcol + 2);
         $this->del_last_index = $rs->getInt($startcol + 3);
         $this->pro_uid = $rs->getString($startcol + 4);
         $this->tas_uid = $rs->getString($startcol + 5);
         $this->usr_uid = $rs->getString($startcol + 6);
         $this->del_type = $rs->getString($startcol + 7);
         $this->del_thread = $rs->getInt($startcol + 8);
         $this->del_thread_status = $rs->getString($startcol + 9);
         $this->del_priority = $rs->getString($startcol + 10);
         $this->del_delegate_date = $rs->getTimestamp($startcol + 11, null);
         $this->del_init_date = $rs->getTimestamp($startcol + 12, null);
         $this->del_task_due_date = $rs->getTimestamp($startcol + 13, null);
         $this->del_finish_date = $rs->getTimestamp($startcol + 14, null);
         $this->del_duration = $rs->getFloat($startcol + 15);
         $this->del_queue_duration = $rs->getFloat($startcol + 16);
         $this->del_delay_duration = $rs->getFloat($startcol + 17);
         $this->del_started = $rs->getInt($startcol + 18);
         $this->del_finished = $rs->getInt($startcol + 19);
         $this->del_delayed = $rs->getInt($startcol + 20);
         $this->del_data = $rs->getString($startcol + 21);
         $this->app_overdue_percentage = $rs->getFloat($startcol + 22);
         $this->resetModified();
         $this->setNew(false);
         // FIXME - using NUM_COLUMNS may be clearer.
         return $startcol + 23;
         // 23 = AppDelegationPeer::NUM_COLUMNS - AppDelegationPeer::NUM_LAZY_LOAD_COLUMNS).
     } catch (Exception $e) {
         throw new PropelException("Error populating AppDelegation object", $e);
     }
 }
示例#20
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->tree_left = $rs->getInt($startcol + 1);
         $this->tree_right = $rs->getInt($startcol + 2);
         $this->tree_parent = $rs->getInt($startcol + 3);
         $this->static_scope = $rs->getInt($startcol + 4);
         $this->name = $rs->getString($startcol + 5);
         $this->relative_path = $rs->getString($startcol + 6);
         $this->created_at = $rs->getTimestamp($startcol + 7, null);
         $this->updated_at = $rs->getTimestamp($startcol + 8, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 9;
     } catch (Exception $e) {
         throw new PropelException("Error populating sfAssetFolder object", $e);
     }
 }
示例#21
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->uuid = $rs->getString($startcol + 1);
         $this->form_id = $rs->getInt($startcol + 2);
         $this->position_id = $rs->getInt($startcol + 3);
         $this->name = $rs->getString($startcol + 4);
         $this->slug = $rs->getString($startcol + 5);
         $this->description = $rs->getString($startcol + 6);
         $this->status = $rs->getInt($startcol + 7);
         $this->type = $rs->getInt($startcol + 8);
         $this->created_at = $rs->getTimestamp($startcol + 9, null);
         $this->deleted_at = $rs->getTimestamp($startcol + 10, null);
         $this->updated_at = $rs->getTimestamp($startcol + 11, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 12;
     } catch (Exception $e) {
         throw new PropelException("Error populating CoFormApplication object", $e);
     }
 }
示例#22
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->user_id = $rs->getInt($startcol + 0);
         $this->uuid = $rs->getString($startcol + 1);
         $this->title = $rs->getString($startcol + 2);
         $this->email = $rs->getString($startcol + 3);
         $this->phone = $rs->getString($startcol + 4);
         $this->address1 = $rs->getString($startcol + 5);
         $this->address2 = $rs->getString($startcol + 6);
         $this->city = $rs->getString($startcol + 7);
         $this->state = $rs->getString($startcol + 8);
         $this->postal = $rs->getString($startcol + 9);
         $this->published = $rs->getBoolean($startcol + 10);
         $this->privacy_level = $rs->getInt($startcol + 11);
         $this->deleted_at = $rs->getTimestamp($startcol + 12, null);
         $this->version = $rs->getInt($startcol + 13);
         $this->updated_at = $rs->getTimestamp($startcol + 14, null);
         $this->created_at = $rs->getTimestamp($startcol + 15, null);
         $this->id = $rs->getInt($startcol + 16);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 17;
     } catch (Exception $e) {
         throw new PropelException("Error populating ContactInfo object", $e);
     }
 }
示例#23
0
 /**
  * Hydrates (populates) the object variables with values from the database resultset.
  *
  * An offset (1-based "start column") is specified so that objects can be hydrated
  * with a subset of the columns in the resultset rows.  This is needed, for example,
  * for results of JOIN queries where the resultset row includes columns from two or
  * more tables.
  *
  * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
  * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
  * @return     int next starting column
  * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
  */
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->prf_uid = $rs->getString($startcol + 0);
         $this->pro_uid = $rs->getString($startcol + 1);
         $this->usr_uid = $rs->getString($startcol + 2);
         $this->prf_update_usr_uid = $rs->getString($startcol + 3);
         $this->prf_path = $rs->getString($startcol + 4);
         $this->prf_type = $rs->getString($startcol + 5);
         $this->prf_editable = $rs->getInt($startcol + 6);
         $this->prf_create_date = $rs->getTimestamp($startcol + 7, null);
         $this->prf_update_date = $rs->getTimestamp($startcol + 8, null);
         $this->resetModified();
         $this->setNew(false);
         // FIXME - using NUM_COLUMNS may be clearer.
         return $startcol + 9;
         // 9 = ProcessFilesPeer::NUM_COLUMNS - ProcessFilesPeer::NUM_LAZY_LOAD_COLUMNS).
     } catch (Exception $e) {
         throw new PropelException("Error populating ProcessFiles object", $e);
     }
 }
示例#24
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->tabname = $rs->getString($startcol + 1);
         $this->content = $rs->getString($startcol + 2);
         $this->sequence = $rs->getInt($startcol + 3);
         $this->created_at = $rs->getTimestamp($startcol + 4, null);
         $this->updated_at = $rs->getTimestamp($startcol + 5, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 6;
     } catch (Exception $e) {
         throw new PropelException("Error populating Peppage object", $e);
     }
 }
示例#25
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->code = $rs->getString($startcol + 1);
         $this->code2 = $rs->getString($startcol + 2);
         $this->name = $rs->getString($startcol + 3);
         $this->academic_calendar_id = $rs->getInt($startcol + 4);
         $this->class_group_id = $rs->getInt($startcol + 5);
         $this->academic_cost_id = $rs->getInt($startcol + 6);
         $this->academic_cost_component_id = $rs->getInt($startcol + 7);
         $this->payment_model_id = $rs->getInt($startcol + 8);
         $this->status = $rs->getString($startcol + 9);
         $this->payment_status = $rs->getString($startcol + 10);
         $this->paid_at = $rs->getTimestamp($startcol + 11, null);
         $this->month = $rs->getString($startcol + 12);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 13;
     } catch (Exception $e) {
         throw new PropelException("Error populating VStudentInfaq object", $e);
     }
 }
示例#26
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->code = $rs->getString($startcol + 1);
         $this->cat_language_id = $rs->getInt($startcol + 2);
         $this->cat_category_id = $rs->getInt($startcol + 3);
         $this->cat_subject_id = $rs->getInt($startcol + 4);
         $this->title = $rs->getString($startcol + 5);
         $this->subtitle = $rs->getString($startcol + 6);
         $this->publisher_id = $rs->getInt($startcol + 7);
         $this->published_year = $rs->getFloat($startcol + 8);
         $this->published_location = $rs->getString($startcol + 9);
         $this->isbn = $rs->getString($startcol + 10);
         $this->student_no = $rs->getString($startcol + 11);
         $this->student_name = $rs->getString($startcol + 12);
         $this->student_major = $rs->getString($startcol + 13);
         $this->student_tutor = $rs->getString($startcol + 14);
         $this->version = $rs->getString($startcol + 15);
         $this->edition = $rs->getFloat($startcol + 16);
         $this->print_no = $rs->getFloat($startcol + 17);
         $this->part = $rs->getFloat($startcol + 18);
         $this->volume = $rs->getFloat($startcol + 19);
         $this->month = $rs->getFloat($startcol + 20);
         $this->year = $rs->getFloat($startcol + 21);
         $this->no = $rs->getFloat($startcol + 22);
         $this->bonus = $rs->getString($startcol + 23);
         $this->pages = $rs->getFloat($startcol + 24);
         $this->height = $rs->getFloat($startcol + 25);
         $this->synopsis = $rs->getString($startcol + 26);
         $this->abstracts = $rs->getString($startcol + 27);
         $this->search_keywords = $rs->getString($startcol + 28);
         $this->created_at = $rs->getTimestamp($startcol + 29, null);
         $this->updated_at = $rs->getTimestamp($startcol + 30, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 31;
     } catch (Exception $e) {
         throw new PropelException("Error populating Catalog object", $e);
     }
 }
示例#27
0
    /**
     * Hydrates (populates) the object variables with values from the database resultset.
     *
     * An offset (1-based "start column") is specified so that objects can be hydrated
     * with a subset of the columns in the resultset rows.  This is needed, for example,
     * for results of JOIN queries where the resultset row includes columns from two or
     * more tables.
     *
     * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
     * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
     * @return     int next starting column
     * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
     */
    public function hydrate(ResultSet $rs, $startcol = 1)
    {
        try {

            $this->pro_uid = $rs->getString($startcol + 0);

            $this->pro_parent = $rs->getString($startcol + 1);

            $this->pro_time = $rs->getFloat($startcol + 2);

            $this->pro_timeunit = $rs->getString($startcol + 3);

            $this->pro_status = $rs->getString($startcol + 4);

            $this->pro_type_day = $rs->getString($startcol + 5);

            $this->pro_type = $rs->getString($startcol + 6);

            $this->pro_assignment = $rs->getString($startcol + 7);

            $this->pro_show_map = $rs->getInt($startcol + 8);

            $this->pro_show_message = $rs->getInt($startcol + 9);

            $this->pro_subprocess = $rs->getInt($startcol + 10);

            $this->pro_tri_deleted = $rs->getString($startcol + 11);

            $this->pro_tri_canceled = $rs->getString($startcol + 12);

            $this->pro_tri_paused = $rs->getString($startcol + 13);

            $this->pro_tri_reassigned = $rs->getString($startcol + 14);

            $this->pro_tri_unpaused = $rs->getString($startcol + 15);

            $this->pro_type_process = $rs->getString($startcol + 16);

            $this->pro_show_delegate = $rs->getInt($startcol + 17);

            $this->pro_show_dynaform = $rs->getInt($startcol + 18);

            $this->pro_category = $rs->getString($startcol + 19);

            $this->pro_sub_category = $rs->getString($startcol + 20);

            $this->pro_industry = $rs->getInt($startcol + 21);

            $this->pro_update_date = $rs->getTimestamp($startcol + 22, null);

            $this->pro_create_date = $rs->getTimestamp($startcol + 23, null);

            $this->pro_create_user = $rs->getString($startcol + 24);

            $this->pro_height = $rs->getInt($startcol + 25);

            $this->pro_width = $rs->getInt($startcol + 26);

            $this->pro_title_x = $rs->getInt($startcol + 27);

            $this->pro_title_y = $rs->getInt($startcol + 28);

            $this->pro_debug = $rs->getInt($startcol + 29);

            $this->pro_dynaforms = $rs->getString($startcol + 30);

            $this->pro_derivation_screen_tpl = $rs->getString($startcol + 31);

            $this->resetModified();

            $this->setNew(false);

            // FIXME - using NUM_COLUMNS may be clearer.
            return $startcol + 32; // 32 = ProcessPeer::NUM_COLUMNS - ProcessPeer::NUM_LAZY_LOAD_COLUMNS).

        } catch (Exception $e) {
            throw new PropelException("Error populating Process object", $e);
        }
    }
示例#28
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->employee_id = $rs->getInt($startcol + 1);
         $this->student_informer = $rs->getInt($startcol + 2);
         $this->time_report = $rs->getTimestamp($startcol + 3, null);
         $this->location_id = $rs->getInt($startcol + 4);
         $this->location_detail = $rs->getString($startcol + 5);
         $this->detail = $rs->getString($startcol + 6);
         $this->action = $rs->getString($startcol + 7);
         $this->status = $rs->getInt($startcol + 8);
         $this->student_id = $rs->getInt($startcol + 9);
         $this->counseling_status_id = $rs->getInt($startcol + 10);
         $this->class_group_id = $rs->getInt($startcol + 11);
         $this->grade = $rs->getFloat($startcol + 12);
         $this->reward = $rs->getFloat($startcol + 13);
         $this->academic_calendar_id = $rs->getInt($startcol + 14);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 15;
     } catch (Exception $e) {
         throw new PropelException("Error populating OutclassCounseling object", $e);
     }
 }
示例#29
0
 /**
  * Hydrates (populates) the object variables with values from the database resultset.
  *
  * An offset (1-based "start column") is specified so that objects can be hydrated
  * with a subset of the columns in the resultset rows.  This is needed, for example,
  * for results of JOIN queries where the resultset row includes columns from two or
  * more tables.
  *
  * @param      ResultSet $rs The ResultSet class with cursor advanced to desired record pos.
  * @param      int $startcol 1-based offset column which indicates which restultset column to start with.
  * @return     int next starting column
  * @throws     PropelException  - Any caught Exception will be rewrapped as a PropelException.
  */
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->app_uid = $rs->getString($startcol + 0);
         $this->del_index = $rs->getInt($startcol + 1);
         $this->pro_uid = $rs->getString($startcol + 2);
         $this->tas_uid = $rs->getString($startcol + 3);
         $this->dyn_uid = $rs->getString($startcol + 4);
         $this->usr_uid = $rs->getString($startcol + 5);
         $this->app_status = $rs->getString($startcol + 6);
         $this->history_date = $rs->getTimestamp($startcol + 7, null);
         $this->history_data = $rs->getString($startcol + 8);
         $this->resetModified();
         $this->setNew(false);
         // FIXME - using NUM_COLUMNS may be clearer.
         return $startcol + 9;
         // 9 = AppHistoryPeer::NUM_COLUMNS - AppHistoryPeer::NUM_LAZY_LOAD_COLUMNS).
     } catch (Exception $e) {
         throw new PropelException("Error populating AppHistory object", $e);
     }
 }
示例#30
0
 public function hydrate(ResultSet $rs, $startcol = 1)
 {
     try {
         $this->id = $rs->getInt($startcol + 0);
         $this->ng_reg_period_id = $rs->getInt($startcol + 1);
         $this->academic_cost_component_id = $rs->getInt($startcol + 2);
         $this->job_type_id = $rs->getInt($startcol + 3);
         $this->ng_applicant_category_id = $rs->getInt($startcol + 4);
         $this->title = $rs->getString($startcol + 5);
         $this->discount = $rs->getString($startcol + 6);
         $this->created = $rs->getTimestamp($startcol + 7, null);
         $this->resetModified();
         $this->setNew(false);
         return $startcol + 8;
     } catch (Exception $e) {
         throw new PropelException("Error populating NgRegPeriodRule object", $e);
     }
 }