Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-12-20 | [ci skip] Minor style/spacing changes following PR #2087 | Andrey Andreev | 2 | -4/+4 | |
2012-12-20 | fixes #2081 : change parameter/variable name to 'foreign_key_checks', update ↵ | Andrew Podner | 2 | -8/+8 | |
change log Signed-off-by:Andrew Podner <a.podner@me.com> | |||||
2012-12-19 | Resolves issue #2081 : provides an option to include statements to disable ↵ | Andrew Podner | 2 | -0/+26 | |
and re-enable foreign key checks in a MySQL database backup output statement. | |||||
2012-12-15 | Fix #2072 | Andrey Andreev | 1 | -1/+1 | |
2012-12-04 | Remove CI_DB_oci8_result::data_seek() | Andrey Andreev | 1 | -63/+0 | |
It can only call oci_execute() in order to reset the pointer to 0, the oci8 driver doesn't support setting the pointer. Due to the result_object(), result_array() and custom_result_object() calling data_seek() every time prior to fetching the result set, this only causes the query to be executed twice. All of the three methods now cast from existing result_object and/or result_array sets, so the probability to ever need to really fetch the result set again is practically zero and so this method doesn't bring any benefit. | |||||
2012-12-04 | Rename DB_result _data_seek() to data_seek() and make it publicly available | Andrey Andreev | 8 | -9/+14 | |
(as requested in #2050) | |||||
2012-12-03 | Fix postgre db_connect() | Andrey Andreev | 1 | -6/+6 | |
2012-12-03 | Improve schema support for Postgre | Andrey Andreev | 2 | -12/+43 | |
2012-12-03 | [ci skip] Cleaned some spaces | Andrey Andreev | 13 | -19/+19 | |
2012-11-25 | Fix #2027 | Andrey Andreev | 5 | -10/+65 | |
2012-11-22 | Fix modify_column() issues (#2020) | Andrey Andreev | 11 | -41/+37 | |
2012-11-20 | Fix issue #2015 | Andrey Andreev | 2 | -170/+20 | |
2012-11-19 | Update system/database/drivers/sqlsrv/sqlsrv_driver.php | Eco91 | 1 | -1/+1 | |
2012-11-19 | Update system/database/drivers/sqlsrv/sqlsrv_driver.php | Eco91 | 1 | -1/+1 | |
Connection error if database name contains space-characters. Use of MSSQL brackets => 'USE [Database Name]' instead of 'USE Database Name' | |||||
2012-11-19 | Add db_set_charset() support for the mssql driver | Andrey Andreev | 1 | -0/+13 | |
2012-11-17 | Improve DB field_data() for IBM Informix and IBM DB2 (PDO) | Andrey Andreev | 2 | -19/+84 | |
2012-11-16 | Improve DB field_data() for PostgreSQL | Andrey Andreev | 7 | -26/+74 | |
2012-11-16 | Improve DB field_data() for Oracle (and fix its max_length for MSSQL / SQLSRV) | Andrey Andreev | 6 | -26/+142 | |
2012-11-16 | Improve DB field_data() for SQLite | Andrey Andreev | 5 | -26/+108 | |
2012-11-16 | Improve DB field_data() for Interbase / Firebird | Andrey Andreev | 3 | -17/+72 | |
2012-11-16 | Improve DB field_data() for MSSQL / SQL Server | Andrey Andreev | 6 | -32/+148 | |
2012-11-16 | Improve DB field_data() for MySQL and CUBRID | Andrey Andreev | 9 | -88/+130 | |
2012-11-13 | Fix PostgreSQL WHERE with boolean values | Andrey Andreev | 2 | -0/+35 | |
2012-11-13 | Add seed values support for Query Builder order_by | Andrey Andreev | 18 | -27/+132 | |
(feature request #1987) | |||||
2012-11-12 | Bring back the AFTER clause for DB Forge add_column() | Andrey Andreev | 14 | -14/+99 | |
(it was temporarily removed due to multiple inconsistencies with other drivers) This commit also fixes issue #1988. Also added support for the FIRST clause (again, MySQL and CUBRID only). | |||||
2012-11-11 | Fix DBForge index creation on MySQL and CUBRID | Andrey Andreev | 5 | -0/+50 | |
2012-11-08 | Fix #1985 | Andrey Andreev | 3 | -6/+6 | |
2012-11-06 | Fix a lang key typo | Andrey Andreev | 15 | -15/+15 | |
2012-11-06 | Fix #589 | Andrey Andreev | 6 | -2/+94 | |
2012-11-06 | Added possibility to pass custom database objects to DB Forge and DB Utilities | Andrey Andreev | 7 | -14/+21 | |
Also, their property is no longer public and the utility class no longer extends CI_DB_forge. | |||||
2012-11-05 | Refactored DB Forge | Andrey Andreev | 24 | -1306/+2869 | |
- 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 | 7 | -14/+66 | |
Fails if called prior to the DB connection initialization. | |||||
2012-11-02 | [ci skip] DocBlocks for DB drivers' driver classes | Andrey Andreev | 24 | -410/+786 | |
Partially fixes issue #1295. | |||||
2012-11-02 | [ci skip] DocBlocks for DB drivers' result classes | Andrey Andreev | 12 | -43/+64 | |
Partially fixes issue #1295. | |||||
2012-11-02 | [ci skip] DocBlocks for DB drivers' utility classes | Andrey Andreev | 21 | -37/+195 | |
Partially fixes issue #1295. | |||||
2012-11-01 | Manually apply PR #1594 (fixing phpdoc page-level generation/warnings) | Andrey Andreev | 60 | -60/+120 | |
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files. | |||||
2012-10-27 | Docblock improvements | Andrey Andreev | 4 | -4/+12 | |
2012-10-27 | Add database schema configuration support (used by PostgreSQL, fix #158) | Andrey Andreev | 4 | -10/+30 | |
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 | 20 | -14/+50 | |
2012-10-23 | Fix issue #1917 | Andrey Andreev | 4 | -10/+86 | |
2012-10-22 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵ | Andrey Andreev | 1 | -1/+1 | |
feature/db_qb_aliasing | |||||
2012-10-13 | Apparently not all PHP builds consider mysqli::__construct() with no ↵ | Andrey Andreev | 1 | -1/+1 | |
parameters to be the same as mysqli_init() | |||||
2012-10-12 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵ | Andrey Andreev | 5 | -56/+40 | |
feature/db_qb_aliasing | |||||
2012-10-12 | Fix mysql's db_connect() | Andrey Andreev | 1 | -2/+3 | |
2012-10-12 | Set MySQL client compression to FALSE by default (problems reported with ↵ | Andrey Andreev | 5 | -56/+39 | |
it), fix some typos, add encrypted database connections support and fix SQLSRV CharacterSet setting | |||||
2012-10-12 | Merge changes from develop | Andrey Andreev | 23 | -316/+166 | |
2012-10-11 | Fix issue #1875 | Andrey Andreev | 4 | -4/+4 | |
2012-10-09 | Really fix that FROM group condition | Andrey Andreev | 5 | -5/+5 | |
2012-10-09 | Alter fix for issue #1257 | Andrey Andreev | 5 | -0/+100 | |