Add assoc method into SqlResultCollection

This commit is contained in:
2014-08-12 14:47:47 +04:00
parent 776859b3c8
commit 9e359e0c25
2 changed files with 12 additions and 3 deletions

View File

@ -37,4 +37,9 @@ class SqlResultCollection extends \ArrayIterator implements iSqlResultItems
{
return $this->offsetGet(0);
}
public function assoc($field, $assoc_as_array = false) {
$sql_result_provider = new SqlResultProvider($this->items);
return $sql_result_provider->assoc($field, $assoc_as_array);
}
}