예제 #1
0
 public function __construct($vals = null)
 {
     if (!isset(self::$_TSPEC)) {
         self::$_TSPEC = array(1 => array('var' => 'sessionHandle', 'type' => TType::STRUCT, 'class' => '\\TSessionHandle'), 2 => array('var' => 'parentCatalogName', 'type' => TType::STRING), 3 => array('var' => 'parentSchemaName', 'type' => TType::STRING), 4 => array('var' => 'parentTableName', 'type' => TType::STRING), 5 => array('var' => 'foreignCatalogName', 'type' => TType::STRING), 6 => array('var' => 'foreignSchemaName', 'type' => TType::STRING), 7 => array('var' => 'foreignTableName', 'type' => TType::STRING));
     }
     if (is_array($vals)) {
         if (isset($vals['sessionHandle'])) {
             $this->sessionHandle = $vals['sessionHandle'];
         }
         if (isset($vals['parentCatalogName'])) {
             $this->parentCatalogName = $vals['parentCatalogName'];
         }
         if (isset($vals['parentSchemaName'])) {
             $this->parentSchemaName = $vals['parentSchemaName'];
         }
         if (isset($vals['parentTableName'])) {
             $this->parentTableName = $vals['parentTableName'];
         }
         if (isset($vals['foreignCatalogName'])) {
             $this->foreignCatalogName = $vals['foreignCatalogName'];
         }
         if (isset($vals['foreignSchemaName'])) {
             $this->foreignSchemaName = $vals['foreignSchemaName'];
         }
         if (isset($vals['foreignTableName'])) {
             $this->foreignTableName = $vals['foreignTableName'];
         }
     }
 }
예제 #2
0
 public function write($output)
 {
     $xfer = 0;
     $xfer += $output->writeStructBegin('TCLIService_GetCrossReference_args');
     if ($this->req !== null) {
         if (!is_object($this->req)) {
             throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA);
         }
         $xfer += $output->writeFieldBegin('req', TType::STRUCT, 1);
         $xfer += $this->req->write($output);
         $xfer += $output->writeFieldEnd();
     }
     $xfer += $output->writeFieldStop();
     $xfer += $output->writeStructEnd();
     return $xfer;
 }