summaryrefslogtreecommitdiffstats
path: root/system/database
AgeCommit message (Collapse)AuthorFilesLines
2012-05-25Fix issue #136 (MySQL escape_like_str())Andrey Andreev2-4/+8
2012-05-24Added update_batch() support for PostgreSQL (issue #356)Andrey Andreev2-2/+43
2012-05-24Fix issue #319Andrey Andreev1-6/+4
2012-05-24Fix issue #121Andrey Andreev3-23/+25
2012-05-24Fix issue #1273 and some cleanup in Query BuilderAndrey Andreev1-25/+18
2012-05-24Add backwards compatibility work-around for the configuration settingAndrey Andreev1-0/+7
2012-05-24Remove the DB destructor (db->close())Andrey Andreev2-18/+1
2012-05-23Fixed conflicts with 2.1-stable merge.Phil Sturgeon1-6/+6
2012-05-23Added ability to _like paramater side to use 'none', in case one wants to ↵Nithin1-2/+6
query like instead of where without case being sensitive
2012-05-23Removed the parameter use in database drivers' _close() and added a default ↵Andrey Andreev14-60/+48
_close() method in CI_DB_driver + some changelog fixes
2012-05-22Removed a space after comment lineGints Murans1-1/+1
2012-05-22Moved destruct to the end of fileGints Murans1-7/+17
2012-05-22Move closing of database connection to CI_DB_driver->__destruct - #1376Root1-0/+7
2012-05-19Fix a issue with CI_DB_pdo_result::num_rows()Rogerio Prado de Jesus1-1/+12
In case of SELECT queries PDOStatement::rowCount doesn't work as expected. This commit makes it returns the expected value.
2012-05-19Fix a issue with affect_rows in CI_DB_pdo_driver::_execute()Rogerio Prado de Jesus1-2/+11
In case of SELECT queries PDOStatement::rowCount doesn't work as expected. This commit makes affect_rows be initialized properly. Signed-off-by: Rogerio Prado de Jesus <rogeriopradoj@gmail.com>
2012-05-19Fixed return line and commentsJuan Ignacio Borda1-8/+3
2012-05-19Fix issue #726Andrey Andreev1-8/+8
2012-05-18added unbuffered_row() to DB_result.php to avoid memory exhausting when ↵Juan Ignacio Borda1-0/+18
dealing with large results.
2012-05-15Minor changes on the pull #1355 additionsAndrey Andreev1-4/+4
2012-05-15Merge pull request #1355 from shidec/developAndrey Andreev1-0/+93
Escaping boolean data type, some DBMS (e.g., postgre) need it
2012-05-15Escaping boolean data type for postgreSoesapto Joeni Hantoro1-10/+2
2012-05-15Escaping boolean data type for postgreSoesapto Joeni Hantoro1-2/+2
2012-05-15Rollback changes, move it to postgre_driverSoesapto Joeni Hantoro1-4/+0
2012-05-15Rollback changes, move it to postgre_driverSoesapto Joeni Hantoro1-1/+1
2012-05-15Escaping boolean data type on postgreSoesapto Joeni Hantoro1-0/+101
2012-05-15Merge pull request #1324 from toopay/db-testsPhil Sturgeon1-12/+7
Improved DB tests
2012-05-11Escaping boolean data type, some DBMS (e.g., postgre) need itSoesapto Joeni Hantoro1-1/+1
2012-05-11simpler script, add boolean handling on DB_driver/escapeSoesapto Joeni Hantoro1-14/+4
2012-05-11Generate better conditions statement on boolean field type. Actually boolean ↵Soesapto Joeni Hantoro1-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-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-05-04PDO SQLite bug fixed, for result_objectTaufan Aditya1-12/+7
2012-05-02Some line separation for better readabilityAndrey Andreev1-0/+5
2012-05-02Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-sqliteAndrey Andreev1-1/+1
2012-05-02Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-odbcAndrey Andreev1-1/+1
2012-04-28Minor assignment fix.George Petsagourakis1-1/+1
Can not use $array[] for reading.
2012-04-27Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-mssqlAndrey Andreev31-618/+437
2012-04-27Merge upstream branchAndrey Andreev31-618/+434
2012-04-27Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-sqlsrvAndrey Andreev31-619/+438
2012-04-27Merge upstream branchAndrey Andreev54-2297/+832
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