为我的 php 网站使用https://github.com/j4mie/idiorm。
如何查看生成的实际 SQL?
IE:
$sql = ORM::for_table('tbl')->create();
$sql->set(array(
'another_id'=> $another_id,
'name' => $name,
'active' => 0
));
$sql->save();
正在生成错误,想查看输出 T-SQL,有时最好这样调试。
塔