summaryrefslogtreecommitdiffstats
path: root/system/database/DB.php
AgeCommit message (Collapse)AuthorFilesLines
2022-03-03Merge branch '3.1-stable' into developAndrey Andreev1-1/+2
2022-03-02[ci skip] Update copyright noticesAndrey Andreev1-1/+2
2022-01-05Drop option to disable Query BuilderAndrey Andreev1-38/+10
I don't know if it has ever worked properly, too much things break if you do try to disable it.
2020-07-09[ci skip] Merge pull request #5970 from sapics/fix/user-guide-urlAndrey Andreev1-1/+1
Fix user guide url
2020-06-24Fix user guide urlsapics1-1/+1
Replace from https://codeigniter.com/user_guide/* to https://codeigniter.com/userguide3/*
2019-10-08Merge pull request #5842 from sapics/chore/fix-indentAndrey Andreev1-1/+1
Fix indentation / clear whitespace
2019-09-25Fix indentsapics1-1/+1
2019-01-02Merge pull request #5662 from jim-parry/copyright2019Instructor, BCIT1-3/+3
Update copyright date to 2019
2018-12-27Update copyright date to 2019Jim Parry1-2/+2
2018-05-18http:// to https://Mehdi Bounya1-2/+2
2018-01-09[ci skip] Merge pull request #5376 from jim-parry/copyright-updateAndrey Andreev1-2/+2
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php
2018-01-09Annual copyright updateMaster Yoda1-2/+2
2017-01-03Update copyright data to 2017Master Yoda1-2/+2
2016-12-31Update copyright data to 2017Master Yoda1-2/+2
2016-01-11[ci skip] Merge branch '3.0-stable' into developAndrey Andreev1-1/+1
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev1-1/+1
2016-01-11Merge branch '3.0-stable' into developAndrey Andreev1-2/+2
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev1-2/+2
2016-01-11Merge branch '3.0-stable' into developAndrey Andreev1-2/+2
2016-01-11[ci skip] Bump year to 2016Andrey Andreev1-2/+2
2015-12-08Remove CI_DB_driver::load_rdriver()Andrey Andreev1-1/+4
2015-08-28Change if is not set or count equals zero into if emptyTomasz Turkowski1-1/+1
2015-02-19Fix postgre driver configAndrey Andreev1-0/+1
2015-02-19Remove 'autoinit' DB settingAndrey Andreev1-5/+0
It doesn't make sense to do a load->database() call but not connect to the database. IIRC there was more stuff in CI_DB_driver::initialize() at some point, so that was probably the reason why the setting existed in the first place. However, now it only results in users making invalid bug reports because they don't understand the feature ... Examples during just the past 2 weeks: #3571 #3601 #3607
2015-02-05Allow a database to be loaded before controller instantiationAndrey Andreev1-9/+14
2015-01-21Remove closing blocks at end of PHP filesvlakoff1-3/+0
2015-01-14var_export in DB.php outputting stringJoão1-1/+1
When a DSN string is supplied and it contains parameters such as "db_debug=TRUE", var_export will currently output the parsable string representation of the variable. By setting the second parameter to TRUE, the output is killed.
2015-01-09Bulk (mostly documentation) updateAndrey Andreev1-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 #3293Andrey Andreev1-14/+25
2014-02-27Call db_connect(TRUE) instead of db_pconnect() + some style changesAndrey Andreev1-12/+8
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-12-10Fix a bug where DB() tried to set the MySQL-specific 'sql_mode' on all driversAndrey Andreev1-5/+0
Supersedes PR #2756
2013-07-18More verbose error messages for incorrect/missing database groups (based on ↵Andrey Andreev1-2/+6
PR #2040)
2013-02-21Disable autoloader call from class_exists() occurences to improve performanceAndrey Andreev1-2/+2
Note: The Driver libary tests seem to depend on that, so one occurence in CI_Loader is left until we resolve that.
2013-01-28Remove unnecessary defined('ENVIRONMENT') checksAndrey Andreev1-1/+1
As suggested in issue #2134 & PR #2149
2013-01-01[ci skip] Happy new yearAndrey Andreev1-1/+1
2012-11-12Let's follow the style guide...vkeranov1-13/+13
2012-11-02DocBlocks for base DB classesAndrey Andreev1-2/+15
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-07-05Merge upstream branchAndrey Andreev1-2/+17
2012-07-05Move _insert() and _update() defaults from Query Builder to DB_driver so ↵Andrey Andreev1-4/+7
that they're available for use by insert_string() and update_string() at all times
2012-07-05code cleanup and changelog addedRene Brokholm1-13/+13
2012-07-05I added so the DB.php is aware of database config files in packages.Rene Brokholm1-1/+16
This way if a package is containing a database.php file in its config folder this will be parset alongside the aplication/config/database.php file.
2012-06-25Some fixesAndrey Andreev1-2/+2
2012-06-23Fix the subdriver checkAndrey Andreev1-1/+1
2012-06-23Alter DB() to check if a subdriver is availableAndrey Andreev1-1/+17
2012-06-12Change file permissions for system/core/*.php and system/database/DB.php so ↵Andrey Andreev1-0/+0
that they don't differ from the rest
2012-06-04Revert/optimize some changes from 48a2baf0e288accd206f5da5031d29076e130792Andrey Andreev1-2/+2
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/databaseAlex Bilbie1-5/+5
2012-05-24Add backwards compatibility work-around for the configuration settingAndrey Andreev1-0/+7