diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-06-24 02:05:26 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-06-24 02:05:26 +0200 |
commit | 2c35b64fc2b072ce873c56dde0f4bb1e5f404450 (patch) | |
tree | 516cc4bf32dba19eba93ce3be9770e414e957ae1 /system/database/drivers/oci8 | |
parent | 473130a226219dac6ef5c59b625b0e1361b292b3 (diff) |
Add a default _limit() method to the Query Builder class
Diffstat (limited to 'system/database/drivers/oci8')
-rw-r--r-- | system/database/drivers/oci8/oci8_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php index e78091614..1f571e586 100644 --- a/system/database/drivers/oci8/oci8_driver.php +++ b/system/database/drivers/oci8/oci8_driver.php @@ -634,7 +634,7 @@ class CI_DB_oci8_driver extends CI_DB { { $this->limit_used = TRUE; return 'SELECT * FROM (SELECT inner_query.*, rownum rnum FROM ('.$sql.') inner_query WHERE rownum < '.($offset + $limit).')' - .($offset !== 0 ? ' WHERE rnum >= '.$offset : ''); + .($offset ? ' WHERE rnum >= '.$offset : ''); } // -------------------------------------------------------------------- |