dounuo7954 2017-09-14 05:09
浏览 160
已采纳

Laravel 5.5 - 如何检查查询构建器是否已成功插入数据?

How can I check if the query builder has inserted my data successfully?

    $result = $this->database->table('user')->insert([
        'uuid' => $uuid,
        'name' => $name,
        'email' => $email,
        'created_on' => $createdOn
    ]);

    print_r($result); // 1

But if I provide an empty array:

    $result = $this->database->table('user')->insert([]);

    print_r($result); // 1

I also get the same result.

So what is the best way to know if a data is inserted?

  • 写回答

1条回答 默认 最新

  • duanqiao2225 2017-09-14 05:34
    关注

    You can use insertGetId method and then check the inserted id exists:

    $id = $this->database->table('user')->insertGetId($query);
    if(empty($id){    
       Log::error('Failed to insert row into database.');
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部