1

我将 Laravel 4 与 Postgres 一起使用。

如果我在 PGAdmin 中运行以下语句

SELEC * FROM tables

我收到以下错误消息

ERROR:  syntax error at or near "selec"
LINE 1: selec * from tables
        ^


********** Error **********

ERROR: syntax error at or near "selec"
SQL state: 42601
Character: 1

现在,当我在 Laravel 4 中运行以下查询时

DB::select("SELEC * FROM tables");

我收到很多其他额外的错误消息。

是否有可能以某种方式实际获取原始 Postgres 错误消息?

4

2 回答 2

1

如何使用pg_result_error()甚至pg_last_error()

$query = DB::select('...');

if($query) {
    //do something
} else {
    return pg_result_error($query);
}
于 2013-09-18T14:03:42.800 回答
0

进入php artisan tinker你可以这样做:

try {
    // ...  your code here .. //
} catch ( \Exception $objException ) {
    $arrTrace = $objException->getTrace();
    $query = $arrTrace[0]['args'][0];
    $bindings = $arrTrace[0]['args'][1];
    foreach ($bindings as $i => $binding){
        if ($binding instanceof \DateTime) {
            $bindings[$i] = $binding->format('\'Y-m-d H:i:s\'');
        }
        else if (is_string($binding)) {
            $bindings[$i] = "'$binding'";
        }
        else if (is_bool($binding)) {
            $bindings[$i] = $binding ? 'true' : 'false';   
        }
        else if ( $binding === null ) {
            $bindings[$i] = 'NULL';
        }
    }

    // Insert bindings into query
    $query = str_replace(array('%', '?'), array('%%', '%s'), $query);
    $query = trim( vsprintf($query, $bindings) ) . "\n";

    print $query;

}
于 2015-08-10T22:13:23.190 回答