insert2.set("CREATED_BY", _createdBy);
getConnection().execute(insert2.make_cmd());
return true;
}else {
if (isOrder) {
Update_cmd update1 = new Update_cmd(getConnection(), getLogger(), SOSFTPHistory.TABLE_FILES_HISTORY);
update1.withQuote = true;
update1.set_where("GUID='"+guid + "'");
update1.copyFieldsFrom(insert2);
update1.set_direct("MODIFIED", "%now");
update1.set("MODIFIED_BY", _createdBy);
getConnection().execute(update1.make_cmd());
}
// bei order warning, bei file skip
}
}