Example #1
0
 public function updateMessageData($field, $where)
 {
     //print_r($field);
     $upsql = formateSqlUpdate($field);
     $sql = 'update msg_amazonmessage set ' . $upsql . $where;
     //echo $sql;
     return $this->dbconn->query($sql);
 }
Example #2
0
 public function updateMessageDataAliSite($field, $where)
 {
     $upsql = formateSqlUpdate($field);
     $sql = 'update msg_alisitemessage set ' . $upsql . $where;
     return $this->dbconn->query($sql);
 }