Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-06-02 | Replaced `==` with `===` and `!=` with `!==` in /system/database | Alex Bilbie | 31 | -167/+167 | |
2012-05-26 | Fix issue #862 | Andrey Andreev | 2 | -54/+24 | |
2012-05-26 | Move count_all() from the drivers to CI_DB_driver | Andrey Andreev | 13 | -349/+30 | |
2012-05-25 | Apply fix for issue #136 on PDO+MySQL as well | Andrey Andreev | 1 | -3/+3 | |
2012-05-25 | Fix issue #136 (MySQL escape_like_str()) | Andrey Andreev | 2 | -4/+8 | |
2012-05-24 | Added update_batch() support for PostgreSQL (issue #356) | Andrey Andreev | 2 | -2/+43 | |
2012-05-24 | Fix issue #319 | Andrey Andreev | 1 | -6/+4 | |
2012-05-24 | Fix issue #121 | Andrey Andreev | 3 | -23/+25 | |
2012-05-24 | Fix issue #1273 and some cleanup in Query Builder | Andrey Andreev | 1 | -25/+18 | |
2012-05-24 | Add backwards compatibility work-around for the configuration setting | Andrey Andreev | 1 | -0/+7 | |
2012-05-24 | Remove the DB destructor (db->close()) | Andrey Andreev | 2 | -18/+1 | |
2012-05-23 | Removed the parameter use in database drivers' _close() and added a default ↵ | Andrey Andreev | 14 | -60/+48 | |
_close() method in CI_DB_driver + some changelog fixes | |||||
2012-05-22 | Removed a space after comment line | Gints Murans | 1 | -1/+1 | |
2012-05-22 | Moved destruct to the end of file | Gints Murans | 1 | -7/+17 | |
2012-05-22 | Move closing of database connection to CI_DB_driver->__destruct - #1376 | Root | 1 | -0/+7 | |
2012-05-19 | Fixed return line and comments | Juan Ignacio Borda | 1 | -8/+3 | |
2012-05-18 | added unbuffered_row() to DB_result.php to avoid memory exhausting when ↵ | Juan Ignacio Borda | 1 | -0/+18 | |
dealing with large results. | |||||
2012-05-15 | Minor changes on the pull #1355 additions | Andrey Andreev | 1 | -4/+4 | |
2012-05-15 | Merge pull request #1355 from shidec/develop | Andrey Andreev | 1 | -0/+93 | |
Escaping boolean data type, some DBMS (e.g., postgre) need it | |||||
2012-05-15 | Escaping boolean data type for postgre | Soesapto Joeni Hantoro | 1 | -10/+2 | |
2012-05-15 | Escaping boolean data type for postgre | Soesapto Joeni Hantoro | 1 | -2/+2 | |
2012-05-15 | Rollback changes, move it to postgre_driver | Soesapto Joeni Hantoro | 1 | -4/+0 | |
2012-05-15 | Rollback changes, move it to postgre_driver | Soesapto Joeni Hantoro | 1 | -1/+1 | |
2012-05-15 | Escaping boolean data type on postgre | Soesapto Joeni Hantoro | 1 | -0/+101 | |
2012-05-15 | Merge pull request #1324 from toopay/db-tests | Phil Sturgeon | 1 | -12/+7 | |
Improved DB tests | |||||
2012-05-11 | Escaping boolean data type, some DBMS (e.g., postgre) need it | Soesapto Joeni Hantoro | 1 | -1/+1 | |
2012-05-11 | simpler script, add boolean handling on DB_driver/escape | Soesapto Joeni Hantoro | 1 | -14/+4 | |
2012-05-11 | Generate better conditions statement on boolean field type. Actually boolean ↵ | Soesapto Joeni Hantoro | 1 | -1/+15 | |
field type need TRUE or FALSE value. Common DBMS (e.g., MySQL) can substite this value with 1 or 0, but it can't be implemented on PostgreSQL. So, its better to use TRUE or FALSE value for boolean field type. | |||||
2012-05-05 | Merge pull request #1325 from st2/develop | Andrey Andreev | 1 | -1/+1 | |
Update system/database/drivers/interbase/interbase_utility.php | |||||
2012-05-04 | Update system/database/drivers/interbase/interbase_utility.php | Cusco | 1 | -1/+1 | |
2012-05-04 | PDO SQLite bug fixed, for result_object | Taufan Aditya | 1 | -12/+7 | |
2012-04-28 | Minor assignment fix. | George Petsagourakis | 1 | -1/+1 | |
Can not use $array[] for reading. | |||||
2012-04-26 | Merge pull request #981 from narfbg/develop-db-postgre | Phil Sturgeon | 2 | -81/+56 | |
Improve the PostgreSQL database driver | |||||
2012-04-26 | Merge pull request #979 from narfbg/develop-db-cubrid | Phil Sturgeon | 4 | -166/+70 | |
Improve the CUBRID database driver | |||||
2012-04-26 | Merge pull request #1061 from jamierumbelow/develop | Phil Sturgeon | 15 | -280/+291 | |
Renamed Active Record class to Query Builder | |||||
2012-04-26 | PDO patch and run the test | Taufan Aditya | 1 | -1/+1 | |
2012-04-26 | A couple more documentation updates | Jamie Rumbelow | 2 | -2/+2 | |
2012-04-26 | Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into develop | Jamie Rumbelow | 56 | -4755/+3669 | |
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-24 | Update system/database/drivers/sqlsrv/sqlsrv_driver.php | st2 | 1 | -1/+1 | |
2012-04-21 | Use parameter 'get_as_float' of microtime() | dixy | 1 | -4/+4 | |
2012-04-15 | Added the ability to insert objects with insert_batch() in Active Reccord. | Iban Eguia | 1 | -1/+2 | |
2012-04-12 | Changed default CI_DB_result::_data_seek() return value to FALSE and removed ↵ | Andrey Andreev | 13 | -83/+9 | |
the method from drivers that don't support it | |||||
2012-04-10 | Add back an unused argument to _delete() due to CI_DB_driver being abstract | Andrey Andreev | 1 | -1/+1 | |
2012-04-10 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵ | Andrey Andreev | 2 | -2/+4 | |
develop-db-postgre | |||||
2012-04-09 | Merge upstream branch | Andrey Andreev | 41 | -1678/+404 | |
2012-04-09 | Add a parameter to SQLite3 and PDO _close() due to CI_DB_driver being abstract | Andrey Andreev | 2 | -2/+4 | |
2012-04-09 | Merge upstream branch | Andrey Andreev | 41 | -1689/+403 | |
2012-04-09 | DB Utility improvements | Andrey Andreev | 14 | -631/+101 | |
- 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 | 11 | -22/+22 | |
2012-04-09 | Multiple DB Forge improvements | Andrey Andreev | 15 | -659/+108 | |
- 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 |