45 private $operator = null;
90 return $this->operator;
99 $this->seqNodeId = $a_seqnodeid;
109 $this->referencedObjective = $a_objective;
114 $this->condition = $a_condition;
119 $this->measureThreshold = $a_measure;
124 $this->
operator = $a_operator;
131 public function insert($a_insert_node =
false)
133 if ($a_insert_node==
true) {$this->
setSeqNodeId(parent::insert());}
134 $sql =
"INSERT INTO sahs_sc13_seq_cond (seqnodeid,referencedobjective,cond,measurethreshold,operator)".
136 $this->db->quote($this->seqNodeId,
"integer").
",".
137 $this->db->quote($this->referencedObjective,
"text").
",".
138 $this->db->quote($this->condition,
"text").
",".
139 $this->db->quote($this->measureThreshold,
"text").
",".
140 $this->db->quote($this->
operator,
"text").
");";
141 $result = $this->db->manipulate($sql);