我从 3.0.7 更新了我的 Kohana do 3.0.8,我得到了这个:
我的功能是:
public function unique_key_exists($value)
{
return (bool) DB::select(array('COUNT("*")', 'total_count'))
->from($this->_table_name)
->where($this->unique_key($value), '=', $value)
->execute($this->_db)
->get('total_count');
}