Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-05 | Drop some previously deprecated functionality | Andrey Andreev | 1 | -9/+1 | |
2022-01-05 | Drop option to disable Query Builder | Andrey Andreev | 1 | -38/+10 | |
I don't know if it has ever worked properly, too much things break if you do try to disable it. | |||||
2022-01-05 | [ci skip] An attempt at a better solution for #5896 | Andrey Andreev | 2 | -9/+50 | |
2022-01-05 | [ci skip] Drop CI_DB_oci8_driver::_bind_params() (no longer used after ↵ | Andrey Andreev | 1 | -29/+0 | |
removing stored_procedure()) | |||||
2022-01-05 | [ci skip] Refactor OCI8 driver to use the uniform result_id property instead ↵ | Andrey Andreev | 2 | -38/+24 | |
of its own custom stmt_id | |||||
2022-01-05 | [ci skip] Drop OCI8-specific get_cursor() and stored_procedure() methods | Andrey Andreev | 2 | -112/+4 | |
2022-01-05 | [ci skip] Merge pull request #5896 from ytetsuro/patch-3 | Andrey Andreev | 1 | -0/+10 | |
fix too many connection for oracle | |||||
2022-01-05 | Merge branch '3.1-stable' into develop | Andrey Andreev | 3 | -3/+10 | |
2021-12-20 | PHP 8.1 update to mysqli database driver | Andrey Andreev | 1 | -0/+7 | |
2021-12-20 | PHP 8.1 update to postgre database driver | Andrey Andreev | 2 | -3/+3 | |
2021-12-20 | Merge pull request #6074 from philsturgeon/ci3-php8 | Andrey Andreev | 3 | -1/+16 | |
CodeIgniter 3.0 on PHP 8 | |||||
2021-11-17 | Merge branch 'php80-patch1' of https://github.com/sapics/CodeIgniter into ↵ | Phil Sturgeon | 2 | -1/+9 | |
ci3-php8 | |||||
2021-10-04 | Fixes CREATE TABLE IF NOT EXISTS on pdo_pgsql_forge; checking for dummy data ↵ | George Petculescu | 1 | -0/+7 | |
DB operations result returns | |||||
2021-01-16 | Fix error in pdo/pgsql for php8.0 | sapics | 2 | -1/+9 | |
From PHP8.0, default PDO::ATTR_ERRMODE is changed from PDO::ERRMODE_SILENT to PDO::ERRMODE_EXCEPTION. Reference: https://wiki.php.net/rfc/pdo_default_errmode | |||||
2021-01-05 | [ci skip] Close #5973 | Andrey Andreev | 1 | -1/+1 | |
2021-01-05 | [ci skip] Close #5973 | Andrey Andreev | 1 | -1/+1 | |
2020-07-09 | Merge branch '3.1-stable' into develop | Andrey Andreev | 2 | -16/+7 | |
2020-07-09 | [ci skip] Correct fix for #5906 | Andrey Andreev | 1 | -1/+1 | |
2020-07-09 | [ci skip] Merge pull request #5970 from sapics/fix/user-guide-url | Andrey Andreev | 74 | -74/+74 | |
Fix user guide url | |||||
2020-06-24 | Fix user guide url | sapics | 70 | -70/+70 | |
Replace from https://codeigniter.com/user_guide/* to https://codeigniter.com/userguide3/* | |||||
2020-05-18 | style: add empty line. | ytetsuro | 1 | -0/+2 | |
2020-03-30 | [ci skip] Merge pull request #5895 from joshkel/pdo-db-close | Andrey Andreev | 1 | -0/+13 | |
Fix database connection leak when closing PDO connection | |||||
2020-03-30 | [ci skip] Merge pull request #5895 from joshkel/pdo-db-close | Andrey Andreev | 1 | -0/+13 | |
Fix database connection leak when closing PDO connection | |||||
2020-03-30 | [ci skip] Fix #5906 | Andrey Andreev | 1 | -12/+3 | |
2020-02-11 | [ci skip] Fix #5901 | Andrey Andreev | 2 | -4/+4 | |
2020-01-29 | fix too many connection for oracle | ytetsuro | 1 | -0/+8 | |
2020-01-28 | [ci skip] Merge pull request #5890 from jerkob/develop | Andrey Andreev | 1 | -0/+12 | |
Adds a public trans_active function to determine transaction state | |||||
2020-01-28 | [ci skip] Merge pull request #5890 from jerkob/develop | Andrey Andreev | 1 | -0/+12 | |
Adds a public trans_active function to determine transaction state | |||||
2020-01-28 | Fix database connection leak when closing PDO connection | Josh Kelley | 1 | -0/+13 | |
We discovered a resource leak (database connection leak) in our application's test suite. We investigated and discovered that, although the test suite was calling `CI_DB_driver::close()` after each test, the `result_id` member variable still maintained an internal reference to the database connection, which kept the connection from being closed. This is using pdo_sqlsrv; I have not tested other PDO drivers. Signed-off-by: Josh Kelley <joshkel@gmail.com> | |||||
2020-01-28 | Small tweak to `trans_active()` description | jerkob | 1 | -1/+1 | |
2020-01-28 | Replace `trans_depth()` with `trans_active()` | jerkob | 1 | -4/+4 | |
Per code review, replace `trans_depth()` function that returns the protected `_trans_depth` property with a `trans_active()` function that returns a boolean indicating whether a transaction is currently active. | |||||
2020-01-27 | [ci skip] Merge pull request #5891 from franciscollanquipichun/develop | Andrey Andreev | 14 | -14/+14 | |
Inserted required attribute `lang` in html tags | |||||
2020-01-27 | [ci skip] Merge pull request #5881 from InSitu-Software/query_builder_full_join | Andrey Andreev | 1 | -1/+1 | |
Added FULL OUTER JOIN to QueryBuilder | |||||
2020-01-25 | inserted required attribute in html tag | Francisco Javier Llanquipichun Garcia | 14 | -14/+14 | |
Signed-off-by: Francisco Javier Llanquipichun Garcia <francisco.llanquipichun@gmail.com> | |||||
2020-01-24 | Add a trans_depth function | jerkob | 1 | -0/+12 | |
Enables retrieval of the current _trans_depth | |||||
2020-01-02 | Added FULL [OUTER] JOIN to CI_DB_query_builder | Christian Mohr | 1 | -1/+1 | |
2019-11-25 | [ci skip] Merge pull request #5856 from ↵ | Andrey Andreev | 3 | -4/+50 | |
ytetsuro/fix/oracle12.1-support-auto-increment Enhancement oracle dbforge, auto_increment can be used when using oracle 12.1. | |||||
2019-10-28 | feat: Modified to useable auto increment. | ytetsuro | 1 | -1/+25 | |
2019-10-28 | fix: Fixed a bug that could not get the version number when first call. | ytetsuro | 1 | -2/+2 | |
2019-10-14 | feat: support auto_increment for orace 12.1 | ytetsuro | 1 | -1/+23 | |
2019-10-08 | Merge pull request #5842 from sapics/chore/fix-indent | Andrey Andreev | 6 | -10/+10 | |
Fix indentation / clear whitespace | |||||
2019-09-25 | Fix indent | sapics | 6 | -10/+10 | |
2019-09-22 | Merge pull request #5834 from najdanovicivan/qb-count-having-fix | Andrey Andreev | 1 | -1/+1 | |
Fix count_all_result if QB query contains HAVING clause | |||||
2019-09-22 | Merge pull request #5834 from najdanovicivan/qb-count-having-fix | Andrey Andreev | 1 | -1/+1 | |
Fix count_all_result if QB query contains HAVING clause | |||||
2019-09-19 | Merge branch '3.1-stable' into develop | Andrey Andreev | 6 | -6/+6 | |
Conflicts resolved: system/core/CodeIgniter.php system/libraries/Cache/drivers/Cache_redis.php system/libraries/Session/drivers/Session_redis_driver.php user_guide_src/source/changelog.rst user_guide_src/source/conf.py user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst | |||||
2019-09-13 | Fix count_all_result if QB query contains Having | Najdanovic Ivan | 1 | -1/+1 | |
Signed-off-by: Najdanovic Ivan <najdanovicivan@gmail.com> | |||||
2019-07-16 | Fix #5796 | Andrey Andreev | 3 | -3/+3 | |
2019-07-15 | [ci skip] Fix #5788 | Andrey Andreev | 1 | -1/+1 | |
2019-06-19 | Fix #5774 | Andrey Andreev | 1 | -1/+1 | |
2019-02-26 | [ci skip] Fix #5701 | Andrey Andreev | 1 | -1/+1 | |