summaryrefslogtreecommitdiffstats
path: root/system/database
AgeCommit message (Collapse)AuthorFilesLines
2012-05-05Merge pull request #1325 from st2/developAndrey Andreev1-1/+1
Update system/database/drivers/interbase/interbase_utility.php
2012-05-04Update system/database/drivers/interbase/interbase_utility.phpCusco1-1/+1
2012-04-28Minor assignment fix.George Petsagourakis1-1/+1
Can not use $array[] for reading.
2012-04-26Merge pull request #981 from narfbg/develop-db-postgrePhil Sturgeon2-81/+56
Improve the PostgreSQL database driver
2012-04-26Merge pull request #979 from narfbg/develop-db-cubridPhil Sturgeon4-166/+70
Improve the CUBRID database driver
2012-04-26Merge pull request #1061 from jamierumbelow/developPhil Sturgeon15-280/+291
Renamed Active Record class to Query Builder
2012-04-26PDO patch and run the testTaufan Aditya1-1/+1
2012-04-26A couple more documentation updatesJamie Rumbelow2-2/+2
2012-04-26Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJamie Rumbelow56-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-24Update system/database/drivers/sqlsrv/sqlsrv_driver.phpst21-1/+1
2012-04-21Use parameter 'get_as_float' of microtime()dixy1-4/+4
2012-04-15Added the ability to insert objects with insert_batch() in Active Reccord.Iban Eguia1-1/+2
2012-04-12Changed default CI_DB_result::_data_seek() return value to FALSE and removed ↵Andrey Andreev13-83/+9
the method from drivers that don't support it
2012-04-10Add back an unused argument to _delete() due to CI_DB_driver being abstractAndrey Andreev1-1/+1
2012-04-10Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵Andrey Andreev2-2/+4
develop-db-postgre
2012-04-09Merge upstream branchAndrey Andreev41-1678/+404
2012-04-09Add a parameter to SQLite3 and PDO _close() due to CI_DB_driver being abstractAndrey Andreev2-2/+4
2012-04-09Merge upstream branchAndrey Andreev41-1689/+403
2012-04-09DB Utility improvementsAndrey Andreev14-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-09Switched public driver methods in DB forge to protectedAndrey Andreev11-22/+22
2012-04-09Multiple DB Forge improvementsAndrey Andreev15-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
2012-04-09Add back limit parameter to Interbase and PostgreSQL _delete() due to ↵Andrey Andreev2-2/+4
CI_DB_active_record being abstract
2012-04-09Added a default _delete() method to CI_DB_active_recordAndrey Andreev11-251/+38
2012-04-09Fix AR delete() for MSSQL and SQLSRVAndrey Andreev2-16/+20
2012-04-09Fix AR delete() for OracleAndrey Andreev1-11/+6
2012-04-09Extend fix for #798 to work across all DB drivers instead of just mysqlAndrey Andreev6-51/+76
2012-04-06Some minor improvements to the PDO driverAndrey Andreev1-33/+26
2012-04-06Fix a CI_DB_pdo_driver::trans_commit() bugAndrey Andreev1-24/+5
2012-04-06Merge upstream branchAndrey Andreev38-1651/+2557
2012-04-06Update _delete() and _update() with removal of unsupported LIMIT and ORDER BYAndrey Andreev1-8/+4
2012-04-06Merge upstream branchAndrey Andreev25-1178/+223
2012-04-06Renamed _escape_identifiers() to escape_identifiers() and moved it to ↵Andrey Andreev24-469/+70
CI_DB_driver
2012-04-06Fix PDO field and table escapingAndrey Andreev1-52/+18
2012-04-05Fixed MSSQL and SQLSrv truncate()Andrey Andreev2-0/+36
2012-04-05Added a default _truncate() method to CI_DB_active_recordAndrey Andreev13-120/+42
2012-04-05Add replace() support for SQLite/SQLite3Andrey Andreev2-8/+43
2012-04-05Replaced driver instances of _replace() with one in CI_DB_active_recordAndrey Andreev4-59/+25
2012-04-05Added a default _update() method to CI_DB_active_recordAndrey Andreev9-252/+27
2012-04-05Replaced driver instances of _insert() with one in CI_DB_active_recordAndrey Andreev13-207/+18
2012-04-05Added a default _insert_batch() method instead of requiring each driver to ↵Andrey Andreev7-89/+18
define it and fixed 2 issues related to it
2012-04-03Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵Andrey Andreev15-161/+2060
develop-db-postgre
2012-04-03Fix PostgreSQL connection stringsAndrey Andreev1-3/+3
2012-04-03Fix Posgres driver connection string. Current version has incorrect ↵Timothy Warren1-1/+1
"username" parameter, which should be "user"
2012-04-03Fix issue #1238Andrey Andreev1-1/+1
2012-04-03Fix issue #14Andrey Andreev2-2/+2
2012-04-02Merge upstream branchAndrey Andreev10-64/+1518
2012-04-02Merge upstream branchAndrey Andreev19-465/+436
2012-03-30Merge pull request #1228 from toopay/database-testPhil Sturgeon1-8/+9
Multiple database drivers testing
2012-03-30Multi database setupTaufan Aditya1-7/+3
2012-03-29Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵Andrey Andreev16-384/+307
develop-db-postgre