android分页查询的query的limit 和 offset的前后顺序

sql语句 select * from t_info limit ? offset ?
那为什么SQLiteDatabase的
db.query(TABLE, new String[]{NUM,MODE}, null, null, null, null, null, offset+","+limit);偏移量在前。
我在找源码 "\s*\d+\s*(,\s*\d+\s*)?" 是这个正则表达式 括号外的占位符是偏移量

那query语句的位置不太了解

http://blog.csdn.net/hellogv/article/details/6011934