在Laravel中创建,更新或删除记录时识别sql错误的最佳方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Laravel中创建,更新或删除记录时识别sql错误的最佳方法相关的知识,希望对你有一定的参考价值。

我有这个用例,当我在创建它后保存记录并且我想检查错误,并告知我的用户sql服务器端发生了什么而没有向他显示实际的错误消息(如果有的话)。

这就是我现在想出来的:

<?php
    namespace AppHttpControllers;

    use IlluminateHttpRequest;
    use AppBook;
    use AppHttpRequestsBookRequest;
    use IlluminateDatabaseQueryException;

    class BookController extends Controller {
        /* ... */

        public function store(BookRequest $request) {
            $book = new Book;

            $book->name = $request->input('name');
            $book->author = $request->input('author');
            $book->published_at = $request->input('publishDate');

            try {
                $book->save();
            }
            catch( QueryException $exception ) {
                $message = '';

                if( $exception->code == 23000 )  { // 23000: mysql error code for "Duplicate entry"
                    $message = 'This book already exists.';
                }
                else {
                    $message = 'Could not store this book.';
                }

                return redirect()
                    ->back()
                    ->withInput()
                    ->withErrors($message);
            }

            return redirect()->route('book.index');
        }
    }
?>

我硬编码MySQL错误代码的部分让我感到困扰,它肯定不可移植。

在保存/更新/删除记录时,我们如何识别数据库错误?

我们能以多种方式进行此验证(数据库不可知)吗?

答案

一种选择是在保存之前使用验证。最简单的方法是使用Laravel-Model-Validation。你可以这样做:

class Book extends Model {
    protected static $rules = [
        'name' => 'required|unique:books',
        'published_at' => 'required|date'
    ];

    //Use this for custom messages
    protected static $messages = [
        'name.unique' => 'A book with this name already exists.'
    ];
}

这可以通过听saving轻松地手动滚动。见Jeffrey Way的code

/**
 * Listen for save event
 */
protected static function boot()
{
    parent::boot();
    static::saving(function($model)
    {
        return $model->validate();
    });
}

以上是关于在Laravel中创建,更新或删除记录时识别sql错误的最佳方法的主要内容,如果未能解决你的问题,请参考以下文章

更新或创建行数据库。拉拉维尔

Laravel 不会在刷新时在“迁移”表中创建记录

sql 在DB中创建,插入,更新和删除

仅获取今天在 laravel 中创建的记录

Laravel 5 中创建策略的问题

ORA-02292: 违反完整性约束 - 在 ORACLE SQL Developer 中创建过程时发现子记录?