summaryrefslogtreecommitdiffstats
path: root/system/database/drivers
AgeCommit message (Collapse)AuthorFilesLines
2016-10-28Match both single and double quote in compile_binds().tianhe19861-1/+1
Signed-off-by: tianhe1986 <w1s2j3229@163.com>
2016-10-17Fix #4851Andrey Andreev5-8/+8
2016-09-27Fix #4809Andrey Andreev1-0/+49
2016-09-16[ci skip] Don't try to insert_batch() when we know it's not supported on ↵Andrey Andreev2-0/+33
Firebird
2016-09-16[ci skip] Fix #4808Andrey Andreev4-4/+4
2016-09-09Merge pull request #4805 from intekhabrizvi/developAndrey Andreev1-1/+1
Use MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT as a connection flag instead of option
2016-09-09Removed mysqli options function for ssl certificate verification falseintekhab1-1/+0
2016-09-09supplied flag to turn off mysqli SSL verification if ssl_verify passed as falseintekhab1-0/+1
2016-08-10Merge branch '3.1-stable' into developAndrey Andreev3-19/+6
2016-07-28Remove dead code written for PHP 5.2Andrey Andreev3-19/+6
2016-07-26Merge branch '3.1-stable' into developAndrey Andreev18-135/+172
Conflicts resolved: .travis.yml system/core/CodeIgniter.php system/database/drivers/oci8/oci8_forge.php system/database/drivers/pdo/subdrivers/pdo_oci_forge.php system/helpers/path_helper.php system/libraries/Email.php user_guide_src/source/changelog.rst user_guide_src/source/conf.py user_guide_src/source/contributing/index.rst user_guide_src/source/general/requirements.rst user_guide_src/source/general/styleguide.rst user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrade_310.rst user_guide_src/source/installation/upgrading.rst
2016-07-26Fix SQLi in ODBC driversAndrey Andreev2-124/+118
2016-06-28[ci skip] Add changelog entries for PR #4678Andrey Andreev2-2/+0
2016-06-28Merge pull request #4678 from kenjis/fix-oci8_forgeAndrey Andreev2-4/+69
DBForge adjustments for Oracle
2016-06-28Remove duplicated $_create_table_ifkenjis1-7/+0
Signed-off-by: Kenji Suzuki <kenji.uui@gmail.com>
2016-06-27Fix oci8_forgekenjis2-0/+72
* Oracle does not have `create table if exists` * Oracle has only NUMBER for integer Signed-off-by: Kenji Suzuki <kenji.uui@gmail.com>
2016-06-22Fix #4674Andrey Andreev2-2/+10
2016-06-08Make db_select() clear cached database metadataAndrey Andreev5-0/+5
2016-05-25[ci skip] Add 'LONGTEXT' to 'STRING' alias to CUBRID drivers for DBForgeAndrey Andreev2-0/+6
Requested in #4640
2016-05-25Amend fix for #4637Andrey Andreev1-1/+1
2016-05-19[ci skip] Fix #4637Andrey Andreev1-7/+13
2016-04-01[ci skip] Fix #861 (regression)Andrey Andreev4-0/+20
2016-03-11Merge branch '3.0-stable' into developAndrey Andreev1-1/+1
Resolved conflicts: system/core/CodeIgniter.php user_guide_src/source/changelog.rst user_guide_src/source/conf.py user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst
2016-03-07[ci skip] Fix transactions for the ibase driverAndrey Andreev1-1/+1
Reported via the forums: http://forum.codeigniter.com/thread-64559.html
2016-01-11[ci skip] Merge branch '3.0-stable' into developAndrey Andreev72-72/+72
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev72-72/+72
2016-01-11Merge branch '3.0-stable' into developAndrey Andreev72-144/+144
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev72-144/+144
2016-01-11Merge branch '3.0-stable' into developAndrey Andreev72-144/+144
2016-01-11[ci skip] Bump year to 2016Andrey Andreev72-144/+144
2016-01-11Merge branch '3.0-stable' into developAndrey Andreev9-28/+167
Resolved conflicts: system/database/drivers/mysql/mysql_driver.php system/database/drivers/mysqli/mysqli_driver.php
2016-01-07MySQL stricton again ... remove the version conditionAndrey Andreev3-3/+3
Ref: #4349
2016-01-07Fix MySQL errors from latest commitsAndrey Andreev3-3/+3
Ref: #4349
2016-01-07Add MySQL stricton changes to mysqli and pdo/mysql driversAndrey Andreev3-20/+55
2016-01-07Fix MySQL's 'stricton' featureAndrey Andreev1-2/+20
2016-01-07Add support for MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERTAndrey Andreev1-2/+15
Available since PHP 5.6.16
2016-01-07[ci skip] Add Oracle 12.1 OFFSET support to PDO_OCI as wellAndrey Andreev1-0/+8
Reference: #4279
2016-01-06[ci skip] Add support for OFFSET with Oracle 12cAndrey Andreev1-0/+8
As requested in #4279
2016-01-06Fix #4337Andrey Andreev4-2/+48
2015-12-30Fix #4331Andrey Andreev1-13/+24
2015-12-14Fix erroneous variables from 85bc9fc53e4c3e46b2f4e1b1eac7e2828d4869e6Andrey Andreev3-4/+4
2015-12-14Change DB charset handlingAndrey Andreev4-55/+30
Close #4311
2015-12-14Fix version() for Oracle DB driversAndrey Andreev2-2/+29
2015-12-11Fix #4306Andrey Andreev1-1/+1
2015-10-19Fix #4171 and a number of other transaction bugsAndrey Andreev12-330/+71
2015-10-13[ci skip] Fix #4170Andrey Andreev1-3/+1
2015-09-16Fix #4120Andrey Andreev1-3/+13
2015-08-19[ci skip] Fix 'sqlsrv' connect failure endless loopAndrey Andreev1-7/+8
Reported via the forums: http://forum.codeigniter.com/thread-61494.html
2015-08-03[ci skip] Normalize tabs/spacesAndrey Andreev4-9/+9
Partial changes from PR #4016
2015-07-17[ci skip] Fix a bug reported via PR #3704Andrey Andreev1-23/+20