Closed (fixed)
Project:
DBTNG
Version:
6.x-1.0-alpha7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
25 Oct 2010 at 10:46 UTC
Updated:
25 Mar 2011 at 23:41 UTC
Why the db_query_range function isn't implemented ?
A simple copy paste from Drupal 7 source works fine :
function db_query_range($query, $from, $count, array $args = array(), array $options = array()) {
if (empty($options['target'])) {
$options['target'] = 'default';
}
return Database::getConnection($options['target'])->queryRange($query, $from, $count, $args, $options);
}
Regards.
Comments
Comment #1
mikey_p commentedHrm, not sure how I missed that. I'll make sure this makes it into my split script.
Comment #2
mikey_p commentedNot sure when I committed this, but it's in rc1 now.