git-svn-id: https://svn.cakephp.org/repo/trunk/cake@263 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
brego 2005-06-21 17:09:42 +00:00
parent 5f0e5a1c59
commit 63052f1d64

View file

@ -205,8 +205,7 @@ class DBO_SQLite extends DBO
*/
function selectLimit($limit, $offset=null)
{
// :TODO: Please verify this with SQLite, untested.
return " LIMIT {$limit}".($offset? " OFFSET {$offset}": null);
return " LIMIT {$limit}".($offset? ", {$offset}": null);
}
}