Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-01-03 | Update copyright data to 2017 | Master Yoda | 1 | -2/+2 | |
2016-08-01 | Merge pull request #4742 from masterklavi/db_fetch_object | Andrey Andreev | 1 | -1/+1 | |
Change ... for the sake of change | |||||
2016-01-11 | [ci skip] Update ellislab.com links to https too | Andrey Andreev | 1 | -1/+1 | |
2016-01-11 | [ci skip] Update codeigniter.com links to https | Andrey Andreev | 1 | -2/+2 | |
2016-01-11 | [ci skip] Bump year to 2016 | Andrey Andreev | 1 | -2/+2 | |
2015-01-29 | fix typo in comments | Claudio Galdiolo | 1 | -7/+7 | |
2015-01-21 | Remove closing blocks at end of PHP files | vlakoff | 1 | -3/+0 | |
2015-01-09 | Bulk (mostly documentation) update | Andrey Andreev | 1 | -3/+3 | |
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450 | |||||
2014-10-27 | [ci skip] Switch to MIT license; close #3293 | Andrey Andreev | 1 | -14/+25 | |
2014-05-09 | Call data_seek(0) only if we've used DB_result::*row*() methods | Andrey Andreev | 1 | -3/+3 | |
This should fix HHVM where it throws 'Unable to jump to row 0 on MySQL result index X' error messages for ext/mysqli | |||||
2014-02-11 | 2013 > 2014 | darwinel | 1 | -1/+1 | |
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015. | |||||
2013-03-04 | Fix #2298 | Andrey Andreev | 1 | -6/+3 | |
2013-01-14 | Replace is_null() with === / !== NULL | vlakoff | 1 | -1/+1 | |
Exact same behavior, but faster. I also think it's more readable. | |||||
2013-01-01 | [ci skip] Happy new year | Andrey Andreev | 1 | -1/+1 | |
2012-12-04 | Rename DB_result _data_seek() to data_seek() and make it publicly available | Andrey Andreev | 1 | -4/+4 | |
(as requested in #2050) | |||||
2012-11-02 | DocBlocks for base DB classes | Andrey Andreev | 1 | -22/+178 | |
Partially fixes issue #1295. | |||||
2012-11-01 | Manually apply PR #1594 (fixing phpdoc page-level generation/warnings) | Andrey Andreev | 1 | -1/+2 | |
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files. | |||||
2012-10-24 | [ci skip] style and phpdoc-related changes (rel #1295) | Andrey Andreev | 1 | -8/+18 | |
2012-10-22 | Fix #1913 | Andrey Andreev | 1 | -11/+8 | |
2012-07-08 | Fix issue #1591 | Andrey Andreev | 1 | -1/+1 | |
2012-07-07 | missing '$this->' causing custom result objects to return as null/empty ↵ | Jon Ellis-Jones | 1 | -1/+1 | |
arrays for ->row() and ->result() methods. | |||||
2012-07-06 | _fetch_object(), custom_result_object() to utilize PHP's native capability ↵ | Andrey Andreev | 1 | -9/+13 | |
to directly return custom class results | |||||
2012-07-05 | Clean-up the separate drivers' DB result classes from no longer needed methods | Andrey Andreev | 1 | -3/+14 | |
2012-07-05 | Optimize custom_result_object() | Andrey Andreev | 1 | -4/+5 | |
2012-07-05 | Don't fetch DB result sets twice | Andrey Andreev | 1 | -16/+59 | |
2012-07-05 | Change DB_result::num_rows default value to NULL | Andrey Andreev | 1 | -15/+45 | |
2012-06-02 | Replaced `==` with `===` and `!=` with `!==` in /system/database | Alex Bilbie | 1 | -7/+7 | |
2012-05-24 | Fix issue #121 | Andrey Andreev | 1 | -7/+9 | |
2012-05-23 | Removed the parameter use in database drivers' _close() and added a default ↵ | Andrey Andreev | 1 | -2/+1 | |
_close() method in CI_DB_driver + some changelog fixes | |||||
2012-05-19 | Fixed return line and comments | Juan Ignacio Borda | 1 | -8/+3 | |
2012-05-18 | added unbuffered_row() to DB_result.php to avoid memory exhausting when ↵ | Juan Ignacio Borda | 1 | -0/+18 | |
dealing with large results. | |||||
2012-04-12 | Changed default CI_DB_result::_data_seek() return value to FALSE and removed ↵ | Andrey Andreev | 1 | -1/+1 | |
the method from drivers that don't support it | |||||
2012-03-29 | Changed the dummy DB free_result() method to void (that's how it's ↵ | Andrey Andreev | 1 | -11/+10 | |
implemented by all drivers) and some style/comment changes in DB_result | |||||
2012-03-20 | Revert CI_DB_result to a regular class It's directly instantiated for cached ↵ | Andrey Andreev | 1 | -1/+1 | |
database results | |||||
2012-03-20 | Remove extraneous newlines | Timothy Warren | 1 | -1/+1 | |
2012-03-19 | Made the rest of the db classes abstract \n | Timothy Warren | 1 | -1/+1 | |
except for the DB_cache class, because I'm not sure if it is directly called | |||||
2012-03-09 | Bumped CodeIgniter's PHP requirement to 5.2.4. | Phil Sturgeon | 1 | -1/+1 | |
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway... | |||||
2012-03-05 | Removed oci8-specific stuff from DB_driver.php and added a constructor to ↵ | Andrey Andreev | 1 | -0/+6 | |
DB_result to handle initialization | |||||
2012-01-08 | Improve database classes | Andrey Andreev | 1 | -58/+25 | |
2012-01-02 | Updating copyright date to 2012 | Greg Aker | 1 | -1/+1 | |
2011-10-22 | Merge pull request #553 from narfbg/ci-oci8-driver-php5 | Phil Sturgeon | 1 | -23/+23 | |
Cleanup and switch oci8_driver and oci8_result to PHP5 functions. | |||||
2011-10-20 | adding new license file (OSL 3.0) and updating readme to ReST | Derek Jones | 1 | -4/+16 | |
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change | |||||
2011-10-20 | Some public and protected method declarations | Andrey Andreev | 1 | -23/+23 | |
2011-07-02 | hand merged remaining unresolved files following the backout of ↵ | Derek Jones | 1 | -46/+51 | |
648b42a75739, which was a NON-trivial whitespace commit | |||||
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 1 | -53/+53 | |
broke the Typography class's string replacements, for instance | |||||
2011-04-25 | Fixed double-space typo. | Razican | 1 | -53/+53 | |
2011-04-25 | Fixing up a tabs vs spaces inconsistency in DB_Result | Greg Aker | 1 | -39/+44 | |
2011-02-14 | Whitespace cleanup in db classes | Pascal Kriete | 1 | -1/+1 | |
2011-01-27 | Automated merge with https://bitbucket.org/ellislab/codeigniter | Phil Sturgeon | 1 | -11/+74 | |
2011-01-16 | sharing some work on model instances | John Crepezzi | 1 | -11/+74 | |