spadefoot / kohana-orm-leap

An ORM module for the Kohana PHP framework that is designed to work with all major databases.
http://spadefoot.github.io/kohana-orm-leap/
100 stars 25 forks source link

Update classes/Base/DB/ResultSet.php #97

Closed leandrocanabarro closed 10 years ago

leandrocanabarro commented 11 years ago

PROBLEM

EXAMPLE

SELECT * FROM foo WHERE foo_id = '';

OR

SELECT * FROM foo WHERE foo_id = 0;

SOLUTION

line 165 - modify for

public function current() { return $this->valid() ? $this->records[$this->position] : NULL; }