Issue is fixed. Will be released in 3.5. As a quick fix, locate spdbtable.php in the runtime and change:
// apply the the cloud connector
// $this->links['dept_emp_dept_no']=rtrGetVar('dept_emp_dept_no');
public function applyLink($where) {
if(method_exists($this->app, '__getLink')) {
$this->app->__getLink();
}
$t=$this->selectSQLLink;
if(count($this->app->links)==0) {
return ' where 1=1';
}
foreach($this->app->links as $key=>$value) {
if($value==null) {
}
$t=str_replace(':'.$key.' ',"'".$value."'", $t); // fix #478
}
if($where!='') {
return $t.' and '.$where;
} else {
if($t!='') {
return ' where '.$t;
} else {
return ' where 1=1';
}
}
}