//邀请人手机号码
var yqmobile = this.options.form.getWidgetByName('Inviter').getValue();
//被邀请人手机号码
var bqmobile = this.options.form.getWidgetByName('BeInviter').getValue();
//查询邀请人的邀请码
var sql1="select t.invitation_code from t_user t where mobile='"+yqmobile+"'";
var v1=FR.remoteEvaluate('=SQL("hbdbdevl","'+sql1+'",1,1)');//获取邀请人邀请码
var sql2="update t_user set inviter_invitation_code = '"+v1+"' where mobile='"+bqmobile+"';";
我想在js里执行sql2,该用什么方法,请大神指教。