Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-11-06 | Fix a lang key typo | Andrey Andreev | 1 | -1/+1 | |
2012-11-06 | Fix #589 | Andrey Andreev | 1 | -1/+1 | |
2012-11-05 | Refactored DB Forge | Andrey Andreev | 1 | -88/+43 | |
- PDO subdrivers are isolated from each other now. - Added compatibility for pretty much all of the features, for every DB platform. - Unified the way that stuff works in general. - Fixes issue #1005. | |||||
2012-11-05 | Fix DB drivers version() implementations that don't execute a query | Andrey Andreev | 1 | -3/+15 | |
Fails if called prior to the DB connection initialization. | |||||
2012-11-02 | [ci skip] DocBlocks for DB drivers' driver classes | Andrey Andreev | 1 | -33/+75 | |
Partially fixes issue #1295. | |||||
2012-11-02 | [ci skip] DocBlocks for DB drivers' result classes | Andrey Andreev | 1 | -4/+30 | |
Partially fixes issue #1295. | |||||
2012-11-02 | [ci skip] DocBlocks for DB drivers' utility classes | Andrey Andreev | 2 | -2/+26 | |
Partially fixes issue #1295. | |||||
2012-11-01 | Manually apply PR #1594 (fixing phpdoc page-level generation/warnings) | Andrey Andreev | 4 | -4/+8 | |
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files. | |||||
2012-10-25 | Merge pull request #1703 from ylynfatt/fix-oracle-out-of-sequence-warning | Andrey Andreev | 1 | -1/+1 | |
Fix for oci_fetch_assoc(): ORA-01002: fetch out of sequence warning | |||||
2012-10-24 | [ci skip] style and phpdoc-related changes (rel #1295) | Andrey Andreev | 1 | -0/+6 | |
2012-10-12 | Merge changes from develop | Andrey Andreev | 1 | -20/+0 | |
2012-10-06 | Fix issue #1257 | Andrey Andreev | 1 | -16/+0 | |
2012-10-04 | Fix issue #1789 | Andrey Andreev | 1 | -4/+0 | |
Signed-off-by: Andrey Andreev <narf@bofh.bg> | |||||
2012-08-13 | Fix for oci_fetch_assoc(): ORA-01002: fetch out of sequence warning | Yannick Lyn Fatt | 1 | -1/+1 | |
Fixes #1701 | |||||
2012-07-19 | Remove _limit()'s extra parameters and qb_limit, qb_offset unneeded ↵ | Andrey Andreev | 1 | -6/+4 | |
typecasts + add _compile_group_by() method | |||||
2012-07-18 | Remove dependancies on qb_like and remove unneeded parameters from ↵ | Andrey Andreev | 1 | -10/+7 | |
_delete(), _like(), _update(), _update_batch() | |||||
2012-07-06 | _fetch_object(), custom_result_object() to utilize PHP's native capability ↵ | Andrey Andreev | 1 | -3/+18 | |
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 | -467/+0 | |
2012-07-05 | Change DB_result::num_rows default value to NULL | Andrey Andreev | 1 | -4/+9 | |
2012-06-28 | Fix issue #1545 | Andrey Andreev | 1 | -6/+12 | |
2012-06-24 | Some changes to the OCI8 (Oracle) driver | Andrey Andreev | 1 | -4/+7 | |
2012-06-24 | Add a default _limit() method to the Query Builder class | Andrey Andreev | 1 | -1/+1 | |
2012-06-08 | escape_identifiers() to accept arrays as well | Andrey Andreev | 1 | -2/+2 | |
2012-06-08 | Revert back some escape_identifiers() to proect_identifiers() as the first ↵ | Andrey Andreev | 1 | -3/+2 | |
one can't handle arrays | |||||
2012-06-08 | Resolve formatting differences between DB forge drivers | Andrey Andreev | 1 | -16/+22 | |
2012-06-02 | Replaced `==` with `===` and `!=` with `!==` in /system/database | Alex Bilbie | 2 | -5/+5 | |
2012-05-26 | Move count_all() from the drivers to CI_DB_driver | Andrey Andreev | 1 | -29/+0 | |
2012-05-24 | Fix issue #121 | Andrey Andreev | 1 | -8/+8 | |
2012-05-23 | Removed the parameter use in database drivers' _close() and added a default ↵ | Andrey Andreev | 1 | -4/+3 | |
_close() method in CI_DB_driver + some changelog fixes | |||||
2012-04-26 | Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into develop | Jamie Rumbelow | 4 | -491/+713 | |
Conflicts: system/core/Loader.php system/database/DB_query_builder.php system/database/drivers/cubrid/cubrid_driver.php system/database/drivers/mssql/mssql_driver.php system/database/drivers/mysql/mysql_driver.php system/database/drivers/mysqli/mysqli_driver.php system/database/drivers/oci8/oci8_driver.php system/database/drivers/odbc/odbc_driver.php system/database/drivers/pdo/pdo_driver.php system/database/drivers/postgre/postgre_driver.php system/database/drivers/sqlite/sqlite_driver.php user_guide_src/source/changelog.rst user_guide_src/source/database/query_builder.rst | |||||
2012-04-12 | Changed default CI_DB_result::_data_seek() return value to FALSE and removed ↵ | Andrey Andreev | 1 | -4/+0 | |
the method from drivers that don't support it | |||||
2012-04-09 | DB Utility improvements | Andrey Andreev | 1 | -45/+2 | |
- Replaced driver methods _list_databases(), _optimize_table() and _repair_table() with properties - Added defaults for optimize_table() and repair_table() SQL strings (FALSE, as those are mostly MySQL-specific) - Added MSSQL/SQLSRV support for optimize_table() (actually rebuilds table indexes) - Switched public driver methods to protected - Improved CUBRID support for list_databases() as it used to only return the currently used database - Minor speed improvements | |||||
2012-04-09 | Switched public driver methods in DB forge to protected | Andrey Andreev | 1 | -2/+2 | |
2012-04-09 | Multiple DB Forge improvements | Andrey Andreev | 1 | -55/+3 | |
- Replaced driver methods _create_database(), _drop_database(), _drop_table() and _rename_table() with properties - Added defaults for the above mentioned platform-specific queries, so that not all drivers need to define them - Improved support for the SQLite, ODBC and PDO drivers | |||||
2012-04-09 | Added a default _delete() method to CI_DB_active_record | Andrey Andreev | 1 | -1/+1 | |
2012-04-09 | Fix AR delete() for Oracle | Andrey Andreev | 1 | -11/+6 | |
2012-04-06 | Renamed _escape_identifiers() to escape_identifiers() and moved it to ↵ | Andrey Andreev | 2 | -38/+1 | |
CI_DB_driver | |||||
2012-04-05 | Added a default _truncate() method to CI_DB_active_record | Andrey Andreev | 1 | -2/+3 | |
2012-04-05 | Added a default _update() method to CI_DB_active_record | Andrey Andreev | 1 | -27/+0 | |
2012-04-05 | Replaced driver instances of _insert() with one in CI_DB_active_record | Andrey Andreev | 1 | -17/+0 | |
2012-04-05 | Added a default _insert_batch() method instead of requiring each driver to ↵ | Andrey Andreev | 1 | -1/+1 | |
define it and fixed 2 issues related to it | |||||
2012-03-28 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-oci8 | Andrey Andreev | 1 | -13/+0 | |
2012-03-28 | Add a dummy db_select() method to CI_DB_driver and remove it from drivers ↵ | Andrey Andreev | 1 | -13/+0 | |
that don't have such functionality | |||||
2012-03-26 | Merge upstream branch | Andrey Andreev | 1 | -16/+0 | |
2012-03-26 | Add DSN string support for Oracle | Andrey Andreev | 1 | -2/+85 | |
2012-03-23 | Add dummy method reconnect() method to CI_DB_driver and remove it from ↵ | Andrey Andreev | 1 | -16/+0 | |
drivers that don't support it | |||||
2012-03-20 | Merge upstream branch | Andrey Andreev | 4 | -29/+13 | |
2012-03-20 | Visibility declarations and cleanup for OCI8 result, forge and utility classes | Andrey Andreev | 3 | -54/+31 | |
2012-03-20 | Visibility declarations and cleanup for CI_DB_oci8_driver | Andrey Andreev | 1 | -86/+56 | |
2012-03-20 | Remove extraneous newlines | Timothy Warren | 3 | -6/+3 | |