summaryrefslogtreecommitdiffstats
path: root/system/database/DB_result.php
AgeCommit message (Collapse)AuthorFilesLines
2014-02-112013 > 2014darwinel1-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-04Fix #2298Andrey Andreev1-6/+3
2013-01-14Replace is_null() with === / !== NULLvlakoff1-1/+1
Exact same behavior, but faster. I also think it's more readable.
2013-01-01[ci skip] Happy new yearAndrey Andreev1-1/+1
2012-12-04Rename DB_result _data_seek() to data_seek() and make it publicly availableAndrey Andreev1-4/+4
(as requested in #2050)
2012-11-02DocBlocks for base DB classesAndrey Andreev1-22/+178
Partially fixes issue #1295.
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev1-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 Andreev1-8/+18
2012-10-22Fix #1913Andrey Andreev1-11/+8
2012-07-08Fix issue #1591Andrey Andreev1-1/+1
2012-07-07missing '$this->' causing custom result objects to return as null/empty ↵Jon Ellis-Jones1-1/+1
arrays for ->row() and ->result() methods.
2012-07-06_fetch_object(), custom_result_object() to utilize PHP's native capability ↵Andrey Andreev1-9/+13
to directly return custom class results
2012-07-05Clean-up the separate drivers' DB result classes from no longer needed methodsAndrey Andreev1-3/+14
2012-07-05Optimize custom_result_object()Andrey Andreev1-4/+5
2012-07-05Don't fetch DB result sets twiceAndrey Andreev1-16/+59
2012-07-05Change DB_result::num_rows default value to NULLAndrey Andreev1-15/+45
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/databaseAlex Bilbie1-7/+7
2012-05-24Fix issue #121Andrey Andreev1-7/+9
2012-05-23Removed the parameter use in database drivers' _close() and added a default ↵Andrey Andreev1-2/+1
_close() method in CI_DB_driver + some changelog fixes
2012-05-19Fixed return line and commentsJuan Ignacio Borda1-8/+3
2012-05-18added unbuffered_row() to DB_result.php to avoid memory exhausting when ↵Juan Ignacio Borda1-0/+18
dealing with large results.
2012-04-12Changed default CI_DB_result::_data_seek() return value to FALSE and removed ↵Andrey Andreev1-1/+1
the method from drivers that don't support it
2012-03-29Changed the dummy DB free_result() method to void (that's how it's ↵Andrey Andreev1-11/+10
implemented by all drivers) and some style/comment changes in DB_result
2012-03-20Revert CI_DB_result to a regular class It's directly instantiated for cached ↵Andrey Andreev1-1/+1
database results
2012-03-20Remove extraneous newlinesTimothy Warren1-1/+1
2012-03-19Made the rest of the db classes abstract \nTimothy Warren1-1/+1
except for the DB_cache class, because I'm not sure if it is directly called
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-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-05Removed oci8-specific stuff from DB_driver.php and added a constructor to ↵Andrey Andreev1-0/+6
DB_result to handle initialization
2012-01-08Improve database classesAndrey Andreev1-58/+25
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1
2011-10-22Merge pull request #553 from narfbg/ci-oci8-driver-php5Phil Sturgeon1-23/+23
Cleanup and switch oci8_driver and oci8_result to PHP5 functions.
2011-10-20adding new license file (OSL 3.0) and updating readme to ReSTDerek Jones1-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-20Some public and protected method declarationsAndrey Andreev1-23/+23
2011-07-02hand merged remaining unresolved files following the backout of ↵Derek Jones1-46/+51
648b42a75739, which was a NON-trivial whitespace commit
2011-07-02backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵Derek Jones1-53/+53
broke the Typography class's string replacements, for instance
2011-04-25Fixed double-space typo.Razican1-53/+53
2011-04-25Fixing up a tabs vs spaces inconsistency in DB_ResultGreg Aker1-39/+44
2011-02-14Whitespace cleanup in db classesPascal Kriete1-1/+1
2011-01-27Automated merge with https://bitbucket.org/ellislab/codeigniterPhil Sturgeon1-11/+74
2011-01-16sharing some work on model instancesJohn Crepezzi1-11/+74
2011-01-05Hey look, it's 2011Greg Aker1-1/+1
2010-11-10Updating PHP requirements in files 5.1.6Greg Aker1-1/+1
2010-10-04Cleanup of stray spaces and tabsBarry Mieny1-40/+40
2010-01-05updated copyrightsDerek Jones1-1/+1
2009-04-22updated copyrights to 2009Derek Jones1-1/+1
2008-11-13Changing EOL style to LFDerek Allard1-341/+341
2008-10-17Fixed a number of bug reports related to table/db names not being escaped or ↵Rick Ellis1-1/+0
prefixed correctly.
2008-09-13updated copyrightRick Ellis1-1/+1
2008-08-21whitespace fixesDerek Allard1-1/+1
a minor re-ordering of the changelog
2008-05-13Some sweeping syntax changes for consistency:Derek Jones1-6/+6
(! foo) changed to ( ! foo) || changed to OR changed newline standardization code in various places from preg_replace to str_replace