summaryrefslogtreecommitdiffstats
path: root/system/database/drivers
AgeCommit message (Collapse)AuthorFilesLines
2012-11-06Fix a lang key typoAndrey Andreev15-15/+15
2012-11-06Fix #589Andrey Andreev6-2/+94
2012-11-06Added possibility to pass custom database objects to DB Forge and DB UtilitiesAndrey Andreev7-14/+21
Also, their property is no longer public and the utility class no longer extends CI_DB_forge.
2012-11-05Refactored DB ForgeAndrey Andreev24-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-05Fix DB drivers version() implementations that don't execute a queryAndrey Andreev7-14/+66
Fails if called prior to the DB connection initialization.
2012-11-02[ci skip] DocBlocks for DB drivers' driver classesAndrey Andreev24-410/+786
Partially fixes issue #1295.
2012-11-02[ci skip] DocBlocks for DB drivers' result classesAndrey Andreev12-43/+64
Partially fixes issue #1295.
2012-11-02[ci skip] DocBlocks for DB drivers' utility classesAndrey Andreev21-37/+195
Partially fixes issue #1295.
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev60-60/+120
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files.
2012-10-27Docblock improvementsAndrey Andreev4-4/+12
2012-10-27Add database schema configuration support (used by PostgreSQL, fix #158)Andrey Andreev4-10/+30
2012-10-25Merge pull request #1703 from ylynfatt/fix-oracle-out-of-sequence-warningAndrey Andreev1-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 Andreev20-14/+50
2012-10-23Fix issue #1917Andrey Andreev4-10/+86
2012-10-22Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵Andrey Andreev1-1/+1
feature/db_qb_aliasing
2012-10-13Apparently not all PHP builds consider mysqli::__construct() with no ↵Andrey Andreev1-1/+1
parameters to be the same as mysqli_init()
2012-10-12Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵Andrey Andreev5-56/+40
feature/db_qb_aliasing
2012-10-12Fix mysql's db_connect()Andrey Andreev1-2/+3
2012-10-12Set MySQL client compression to FALSE by default (problems reported with ↵Andrey Andreev5-56/+39
it), fix some typos, add encrypted database connections support and fix SQLSRV CharacterSet setting
2012-10-12Merge changes from developAndrey Andreev23-316/+166
2012-10-11Fix issue #1875Andrey Andreev4-4/+4
2012-10-09Really fix that FROM group conditionAndrey Andreev5-5/+5
2012-10-09Alter fix for issue #1257Andrey Andreev5-0/+100
2012-10-06Fix issue #1257Andrey Andreev15-240/+0
2012-10-05Fix issue #1765Andrey Andreev1-2/+10
2012-10-05Fix SQLite3 DB error handlingAndrey Andreev1-15/+6
2012-10-04Fix issue #1789Andrey Andreev15-55/+2
Signed-off-by: Andrey Andreev <narf@bofh.bg>
2012-08-21driver fix + userguide + changelogMichiel Vugteveen1-3/+15
2012-08-20mysql driver updatedMichiel Vugteveen2-5/+21
2012-08-20compression testMichiel Vugteveen1-0/+8
2012-08-13Fix for oci_fetch_assoc(): ORA-01002: fetch out of sequence warningYannick Lyn Fatt1-1/+1
Fixes #1701
2012-08-01Merge pull request #1601 from rwillert/patch-1Phil Sturgeon1-1/+9
Reconnect to PostgreSQL database if connection dropped.
2012-07-23Fix a bug in CI_DB_sqlsrv_driver::affected_rows()Andrey Andreev1-1/+1
2012-07-19Implement _compile_order_by()Andrey Andreev4-12/+12
2012-07-19Remove _limit()'s extra parameters and qb_limit, qb_offset unneeded ↵Andrey Andreev13-87/+58
typecasts + add _compile_group_by() method
2012-07-18Merge where() and having() logic - it's structurally identical and only the ↵Andrey Andreev12-28/+32
keyword differs
2012-07-18Remove dependancies on qb_like and remove unneeded parameters from ↵Andrey Andreev21-452/+199
_delete(), _like(), _update(), _update_batch()
2012-07-17Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵Alex Bilbie1-1/+1
codeigniter/develop
2012-07-16Fix on _update_batch() : wrong variable used for field selectionaroche1-1/+1
2012-07-15Changed double quotes to single quotes to meet style guidelinesAlex Bilbie1-1/+1
2012-07-13Some adjustments in inline documentationvlakoff3-3/+3
2012-07-10Reconnect to PostgreSQL database if connection droped.rwillert1-1/+9
2012-07-09Remove _drop_database property from CI_DB_odbc_forge and CI_DB_pdo_forge (it ↵Andrey Andreev2-2/+0
has the same default in CI_DB_forge)
2012-07-08Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵Andrey Andreev12-37/+110
feature/db_subdrivers
2012-07-06_fetch_object(), custom_result_object() to utilize PHP's native capability ↵Andrey Andreev12-37/+110
to directly return custom class results
2012-07-05Replace localhost with 127.0.0.1 and remove the PDO::ERRMODE_SILENT option - ↵Andrey Andreev10-10/+9
it's the default anyway
2012-07-05Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵Andrey Andreev2-7/+35
feature/db_subdrivers
2012-07-05Fix PDO version()Andrey Andreev1-3/+14
2012-07-05Apparently mysql_data_seek() causes problems even when we suppress and ignore itAndrey Andreev1-4/+21
2012-07-05Merge upstream branchAndrey Andreev26-1286/+121