summaryrefslogtreecommitdiffstats
path: root/system/database/drivers
AgeCommit message (Collapse)AuthorFilesLines
2012-03-19Added access modifiers to CUBRID driverTimothy Warren1-56/+31
2012-03-19Removed pointless _prep_sql methodsTimothy Warren8-139/+2
2012-03-18Merge pull request #1060 from toopay/pdo_metaAndrey Andreev2-2/+62
Fixed meta table method(s) for PDO
2012-03-17Remove type castingTaufan Aditya1-1/+1
2012-03-16Spacing and replace array_key_existsTaufan Aditya1-2/+2
2012-03-12Remove collation parameter from db_set_charset() (no longer needed)Andrey Andreev2-4/+2
2012-03-12Add missing semicolonsAndrey Andreev2-2/+2
2012-03-12Remove usage of SET NAMES and the deprecated mysql_escape_string() from ↵Andrey Andreev2-30/+4
MySQL/MySQLi drivers
2012-03-09Allow arrays to be used for enum/set constraint.Phil Sturgeon1-3/+26
This was working in MySQL but not MySQLi.
2012-03-09Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon20-105/+87
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon44-44/+44
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 Andreev1-2/+1
it without declaring it
2012-03-06Resolve _protect_identifiers()/protect_identifiers() usage issuesAndrey Andreev20-103/+86
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-05Removed oci8-specific stuff from DB_driver.php and added a constructor to ↵Andrey Andreev1-3/+12
DB_result to handle initialization
2012-03-05Partially fix issue #306Andrey Andreev1-4/+3
2012-03-05Fix issue #1125Andrey Andreev1-1/+35
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 Andreev1-23/+12
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 Andreev12-66/+84
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 Warren14-278/+153
2012-03-02Replaced DB methods _error_message() and _error_number() with error() (issue ↵Andrey Andreev10-190/+91
#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-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 Warren8-160/+16
2012-03-01Merge upstream changesAndrey Andreev5-70/+81
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 Warren4-44/+70
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 #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-01Fix 'skip' section of limit clauseTimothy Warren1-1/+1
2012-02-29Finally figured out limit statementTimothy Warren1-1/+25
2012-02-27Merge upstreamTimothy Warren4-14/+60
2012-02-27Fixed a db_set_charset() bugAndrey Andreev8-134/+5
2012-02-24Update database property when switching to a new oneAndrey Andreev4-4/+48
2012-02-22Close services after using them, added dbutil->backup() methodTimothy Warren2-5/+18
2012-02-22Add an optional database name parameter to db_select()Andrey Andreev4-14/+16
2012-02-21More formatting fixesTimothy Warren3-4/+4