SQL.Clear;
        SQL.Add(' update T_user set password= '''+trim(suiEdt_new.Text)+'''');
        SQL.Add(' where username= '''+trim(suiCb_user.Text)+'''');
        SQL.Add(' and password= '''+trim(suiEdt_old.Text)+'''');
        ExecSQL;这个update语句在SQL里面可以使用,为什么在Access里面不行呢?