summaryrefslogtreecommitdiffstats
path: root/system/database
AgeCommit message (Collapse)AuthorFilesLines
2012-03-09Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon22-303/+224
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon51-51/+51
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-03-06Move dsn property from the PDO to CI_DB_driver so other DB drivers can use ↵Andrey Andreev2-2/+2
it without declaring it
2012-03-06Just some comment fixes and cleared spacesAndrey Andreev1-33/+27
2012-03-06Property visibility declarations for CI_DB_driverAndrey Andreev1-40/+35
2012-03-06Resolve _protect_identifiers()/protect_identifiers() usage issuesAndrey Andreev22-162/+123
2012-03-06Merge pull request #1138 from timw4mail/developAndrey Andreev1-70/+41
Added visibility keywords to DB_driver methods
2012-03-06Made _protect_identifiers publicTimothy Warren1-1/+4
2012-03-06Made protect_identifiers publicTimothy Warren1-1/+1
2012-03-06Added visibility keywords to DB_driver methodsTimothy Warren1-70/+38
2012-03-06Fix issue #1125 ... for realAndrey Andreev1-0/+35
2012-03-05Removed order_by() from PostgreSQL driver too.SammyK1-9/+1
2012-03-05Fixed bug for PostgreSQL driver where setting a limit() on update() or ↵SammyK1-2/+2
delete() would throw a syntax error from Postgres.
2012-03-05Fix issue #64Hamza Bhatti1-1/+1
Modify regular expression to be able to handle SQL bracket delimiters for column names that contain special characters or SQL keywords. Signed-off-by: Hamza Bhatti <tiyowan@gmail.com>
2012-03-05Removed oci8-specific stuff from DB_driver.php and added a constructor to ↵Andrey Andreev3-23/+20
DB_result to handle initialization
2012-03-05Partially fix issue #306Andrey Andreev1-4/+3
2012-03-05Fix issue #1125Andrey Andreev1-1/+35
2012-03-04Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon24-623/+1701
2012-03-04Merged conflicts.Phil Sturgeon1-7/+7
2012-03-03Fix MySQL/MySQLi field_data()Andrey Andreev2-12/+50
2012-03-03Replace usage of legacy alias pg_exec() in favor of pg_query() and improve ↵Andrey Andreev1-28/+10
PostgreSQL driver trans_*() methods
2012-03-03Added _optimize_table() support for PostgreSQLAndrey Andreev2-24/+13
2012-03-03Add db_set_charset() support for PostgreSQL and change its implementation ↵Andrey Andreev2-1/+14
for 'mysql'
2012-03-03Improve DB version() implementation and add pg_version() supportAndrey Andreev13-87/+109
2012-03-02Removed db_set_charset() from Interbase driver (no longer needed)Andrey Andreev1-15/+0
2012-03-02Replace Interbase _error_message(), _error_number() with the new error() methodAndrey Andreev1-29/+19
2012-03-02Merge upstreamTimothy Warren15-290/+163
2012-03-02Replaced DB methods _error_message() and _error_number() with error() (issue ↵Andrey Andreev11-202/+101
#1097)
2012-03-02Added method visibility declarations to SQLite DB utility classAndrey Andreev1-26/+15
2012-03-02Fix a bug in Oracle's DB forge _create_table() method (AUTO_INCREMENT is not ↵Andrey Andreev1-47/+17
supported)
2012-03-02Fix issue #1101 (MySQL/MySQLi result field_data())Andrey Andreev2-22/+15
2012-03-01compile binds before caching the query, otherwise the cached query will ↵Ryan Dial1-6/+6
never match the unbound query. updated changlog to mention bug fix.
2012-03-01Fix issue #413 (Oracle _error_message(), _error_number())Andrey Andreev1-8/+30
2012-03-01Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into firebirdTimothy Warren9-166/+21
2012-03-01Merge upstream changesAndrey Andreev7-79/+102
2012-03-01Fixed a bug in CUBRID's affected_rows()Andrey Andreev1-5/+4
2012-03-01Fix a bug in PDO's insert_id() (PostgreSQL-specific)Andrey Andreev1-23/+9
2012-03-01Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into firebirdTimothy Warren5-52/+73
2012-03-01Fix PDO's _version() method where it used to return client version instead ↵Andrey Andreev1-4/+3
of the server one
2012-03-01Fix issue #1036 (is_write_type() returned FALSE for RENAME, OPTIMIZE queries)Andrey Andreev1-9/+4
2012-03-01Fix issue #611 (SQLSRV _error_message() and _error_number() warnings)Andrey Andreev1-9/+26
2012-03-01Fix issue #129 (ODBC num_rows() returning -1 in some cases)Andrey Andreev1-4/+16
2012-03-01Fix issue #81 (ODBC list_fields(), field_data())Andrey Andreev1-19/+19
2012-03-01Fix an Oracle escape_str() bug (#68, #414)Andrey Andreev1-8/+6
2012-03-01Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into firebirdTimothy Warren1-1/+2
2012-03-01Fix 'skip' section of limit clauseTimothy Warren1-1/+1
2012-02-29Change end() usage due to E_STRICT messagesAndrey Andreev1-1/+2
2012-02-29Finally figured out limit statementTimothy Warren1-1/+25
2012-02-29Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into firebirdTimothy Warren1-0/+16
2012-02-29Merged in 2.1-stable changes.Phil Sturgeon1-1/+17