5

对于我正在处理的项目,我使用的是独立的 Eloquent ORM,如本页所述。一切正常,除了我不能在我的代码中使用 DB::raw。我收到以下 PHP 错误:

Fatal error: Class 'DB' not found

这是正确的,因为我只使用 Laravel 框架中的 Eloquent,而不是 Laravel 本身。是否可以使用 DB::raw 之类的东西,以便我可以使用特定的 SQL 代码?例如where(DB::raw('YEAR(DateField)'),2013)

4

2 回答 2

12

好吧,寻找多年的解决方案,在 SO 上询问,并在互联网上的其他地方找到了答案。

Model::whereRaw('YEAR(DateField) = 2013')会成功的。

编辑:如果您想DB::raw在任何其他部分使用(例如在 中select,您可以使用以下内容:

use Illuminate\Database\Query\Expression as raw;
// You can now use "new raw()" instead of DB::raw. For example:
$yourVar = YourModel::select(new raw("count(FieldA) AS FieldACount"),'FieldB')->groupBy('FieldB')->lists(new raw('FieldACount'),'FieldB');
于 2013-09-19T12:13:22.387 回答
2

我来这里是为了寻找如何将自制的数据库播种器包装在事务中。

其功能是 DB::transaction(function(){});

话虽如此,DB 是一个门面。根据Laravel Facade Documentation DB 引用 DatabaseManager 和 Connection。

如果您使用的是独立的 Eloquent,您将希望从 Capsule 对象中获取连接。代码最终看起来像这样:

use Illuminate\Database\Capsule\Manager as Capsule;

$capsule = new Capsule;

$capsule->addConnection([
    'driver'    => 'mysql',
    'host'      => 'localhost',
    'database'  => 'database',
    'username'  => 'root',
    'password'  => 'password',
    'charset'   => 'utf8',
    'collation' => 'utf8_unicode_ci',
    'prefix'    => '',
]);

// Set the event dispatcher used by Eloquent models... (optional)
use Illuminate\Events\Dispatcher;
use Illuminate\Container\Container;
$capsule->setEventDispatcher(new Dispatcher(new Container));

// Make this Capsule instance available globally via static methods... (optional)
$capsule->setAsGlobal();

// Setup the Eloquent ORM... (optional; unless you've used setEventDispatcher())
$capsule->bootEloquent();

$db = $capsule->getConnection();

$db->transaction(function()
{
  // your transaction code here
});
于 2015-05-26T17:07:33.833 回答