我将 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 错误消息?