Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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-05-09 | Remove (most of) error suppression from database drivers (issue #3036) | Andrey Andreev | 17 | -56/+61 | |
2014-05-07 | Remove error-masking '@' in mysqli_driver (See: ↵ | mdunisch | 1 | -2/+2 | |
https://github.com/EllisLab/CodeIgniter/issues/3036) | |||||
2014-04-30 | Added `_trans_failure` property to fix PHP Warning. | Ahmedul Haque Abid | 1 | -0/+9 | |
2014-04-25 | Minor fixes | vlakoff | 1 | -1/+1 | |
2014-04-09 | Removed BOM | Etki | 1 | -1/+1 | |
2014-04-09 | Microfix | Etki | 1 | -7/+1 | |
cleaned `return true; return true;` construction | |||||
2014-03-31 | [ci skip] Fix #2972 | Andrey Andreev | 1 | -1/+1 | |
2014-03-24 | [ci skip] Spacing adjustments | Andrey Andreev | 1 | -10/+10 | |
2014-03-17 | Fix DB forge unsigned attribute (PR #2949) | Andrey Andreev | 1 | -15/+13 | |
2014-03-13 | Partially revert PR #2190 | Andrey Andreev | 2 | -4/+4 | |
The core shouldn't depend on constants that are not defined by itself | |||||
2014-03-10 | Fix #2928, #2929 | Andrey Andreev | 1 | -0/+1 | |
2014-03-10 | Fix #2928 | Andrey Andreev | 1 | -2/+5 | |
2014-03-10 | Add support for callable form validation rules | Andrey Andreev | 1 | -1/+1 | |
2014-02-27 | Call db_connect(TRUE) instead of db_pconnect() + some style changes | Andrey Andreev | 2 | -30/+30 | |
2014-02-26 | More removal of error suppression usage | Andrey Andreev | 2 | -9/+6 | |
2014-02-26 | Don't use error suppression on is_dir(), file_exists() | Andrey Andreev | 4 | -4/+4 | |
2014-02-25 | Revert to error suppression on mysql_(p)connect() due to deprecation messages | Andrey Andreev | 1 | -2/+2 | |
2014-02-25 | Remove error suppression usage from db_connect() | Andrey Andreev | 6 | -10/+10 | |
2014-02-25 | Make db_pconnect an alias for db_connect(TRUE) and reduce code repetition | Andrey Andreev | 13 | -214/+51 | |
2014-02-20 | Don't use error suppression with ini_set() | Andrey Andreev | 1 | -1/+1 | |
2014-02-11 | 2013 > 2014 | darwinel | 79 | -79/+79 | |
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015. | |||||
2014-02-09 | Style Guide | darwinel | 1 | -1/+1 | |
Logical Operators Use of || is discouraged as its clarity on some output devices is low (looking like the number 11 for instance). && is preferred over AND but either are acceptable, and a space should always precede and follow ! | |||||
2014-02-06 | Typo Fix | Vivek Dinesh | 1 | -1/+1 | |
Signed-off-by: Vivek Dinesh <vivekdinesh5@gmail.com> | |||||
2014-02-05 | Fix #2856 | Andrey Andreev | 1 | -1/+1 | |
2014-01-30 | Previous 2 commits were just dumb | Andrey Andreev | 1 | -1/+1 | |
2014-01-30 | Fix a syntax error from last commit | Andrey Andreev | 1 | -1/+1 | |
2014-01-30 | Some fail-safe pdo_pgsql adjustments | Andrey Andreev | 2 | -2/+7 | |
2014-01-23 | Fix #2836 | Andrey Andreev | 1 | -1/+1 | |
2014-01-21 | Merge branch 'feature/dbforge_table_attributes' into develop | Andrey Andreev | 4 | -23/+103 | |
2014-01-21 | SQLSRV improvements | Andrey Andreev | 2 | -3/+66 | |
Mainly for performance (issue #2474), but also added a 'scrollable' configuration flag and auto-detection for SQLSRV_CURSOR_CLIENT_BUFFERED (only available since SQLSRV 3). | |||||
2014-01-20 | Add support for optional table attributes to CI_DB_forge::create_table() | Andrey Andreev | 4 | -23/+103 | |
Supersedes PRs #989, #2776 Related issue: #41 | |||||
2014-01-08 | Optimize get_instance() calls/assignments | Andrey Andreev | 1 | -2/+1 | |
2014-01-07 | A tiny regexp improvement for CI_DB_driver::is_write_type() | Andrey Andreev | 3 | -3/+3 | |
2014-01-06 | Fix #2579: Query Builder's "no escape" functionality didn't work properly ↵ | Andrey Andreev | 1 | -4/+17 | |
with query cache | |||||
2013-12-20 | Polishing changes from #PR #2781 | Andrey Andreev | 1 | -3/+3 | |
Looks like an unnecessary commit was made by the author just as I was clicking the Merge button. :) | |||||
2013-12-19 | so we need \sNOT EXISTS | Tufan Barış YILDIRIM | 1 | -1/+1 | |
2013-12-19 | changed EXISTS / NOT EXISTS pattern | Tufan Barış YILDIRIM | 1 | -3/+3 | |
@narfbg "It has parenthesis, so use the IN / NOT IN pattern as a base." | |||||
2013-12-19 | EXISTS / NOT EXISTS clause support for DB_driver | Tufan Barış YILDIRIM | 1 | -3/+3 | |
2013-12-19 | EXISTS / NOT EXISTS clause support for DB_driver | Tufan Barış YILDIRIM | 1 | -2/+4 | |
2013-12-19 | EXISTS / NOT EXISTS clause support for DB_query_builder. | Tufan Barış YILDIRIM | 1 | -2/+4 | |
2013-12-18 | Use table name as a prefix for index names | mjnaderi | 1 | -3/+2 | |
2013-12-18 | Cleanup DB_forge _process_indexes | mjnaderi | 1 | -1/+2 | |
2013-12-18 | Cleanup DB_forge _process_indexes | mjnaderi | 1 | -1/+0 | |
2013-12-14 | DB call_function() bug : funny typo -or- smart autocomplete? | Kakysha | 1 | -1/+1 | |
2013-12-10 | Fix a bug where DB() tried to set the MySQL-specific 'sql_mode' on all drivers | Andrey Andreev | 4 | -5/+49 | |
Supersedes PR #2756 | |||||
2013-11-27 | [ci skip] Remove a few more spaces | Andrey Andreev | 1 | -1/+1 | |
2013-11-17 | Small docblock fix | vlakoff | 1 | -1/+1 | |
2013-11-12 | [ci skip] Remove some whitespace chars | Andrey Andreev | 1 | -3/+2 | |
2013-11-11 | Cleanup PR #2719 | GDmac | 1 | -5/+2 | |
for Fix #2406 query builder cache Signed-off-by: GDmac <grdalenoort@gmail.com> |