Laravel如何使雄辩失败安全

时间:2016-02-03 20:52:11

标签: php sql laravel

我有多对多的关系,我应该可以将一个切换到另一个。

我实施的方式是

    With OutMail ' outlook message details
        .To = CreateObject("Outlook.Application").GetNamespace("MAPI") _
                    .CurrentUser.AddressEntry.GetExchangeUser.Manager

        .Subject = "Sales report - " & Format(Date, "dd-mm-yyyy")
        .Body = "Here comes the full sales report from " & Format(Date, "dd-mm-yyyy")
        .Attachments.Add ActiveWorkbook.FullName 'attachment File 
        .Display
'        .Send
    End With

让我们说分离成功但同步失败了 然后我会丢失原始数据..我该如何处理? 有什么好办法可以防止这种情况吗?

1 个答案:

答案 0 :(得分:2)

不需要分离,因为sync()将分离数组中不存在的所有键,并附加所有给定的键。

请参阅文档的this部分。