function __construct($sourceDbParams, $syncfile_id, $tableName, $owner_col, $option_col, $extra_cols = array())
 {
     $this->owner_col = $owner_col;
     $this->option_col = $option_col;
     $this->extra_cols = $extra_cols;
     parent::__construct($sourceDbParams, $syncfile_id, $tableName);
 }
예제 #2
0
 function __construct($sourceDbParams, $syncfile_id)
 {
     parent::__construct($sourceDbParams, $syncfile_id, 'training');
 }
예제 #3
0
 function __construct($sourceDbParams, $syncfile_id)
 {
     parent::__construct($sourceDbParams, $syncfile_id, 'person');
 }
 function __construct($sourceDbParams, $syncfile_id, $tableName, $value_col)
 {
     $this->value_col = $value_col;
     parent::__construct($sourceDbParams, $syncfile_id, $tableName);
 }
예제 #5
0
 function __construct($sourceDbParams, $syncfile_id)
 {
     parent::__construct($sourceDbParams, $syncfile_id, 'facility');
 }