summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/pdo/pdo_driver.php
AgeCommit message (Collapse)AuthorFilesLines
2012-03-23Add dummy method reconnect() method to CI_DB_driver and remove it from ↵Andrey Andreev1-20/+0
drivers that don't support it
2012-03-20Visibility declarations and cleanup for CI_DB_pdo_driverAndrey Andreev1-109/+77
2012-03-20Remove extraneous newlinesTimothy Warren1-1/+1
2012-03-20Revert "PDO driver access modifiers"Timothy Warren1-50/+74
This reverts commit 8c332e7f907e6af498f18fa1bf28e0a0c6e11448.
2012-03-19PDO driver access modifiersTimothy Warren1-74/+50
2012-03-18Merge pull request #1060 from toopay/pdo_metaAndrey Andreev1-0/+21
Fixed meta table method(s) for PDO
2012-03-09Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-4/+2
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-1/+1
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-06Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJamie Rumbelow1-64/+35
Conflicts: system/database/DB_driver.php system/database/DB_query_builder.php
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 Andreev1-2/+1
2012-03-03Improve DB version() implementation and add pg_version() supportAndrey Andreev1-4/+6
2012-03-02Replaced DB methods _error_message() and _error_number() with error() (issue ↵Andrey Andreev1-17/+18
#1097)
2012-03-01Merge upstream changesAndrey Andreev1-26/+11
2012-03-01Fix a bug in PDO's insert_id() (PostgreSQL-specific)Andrey Andreev1-23/+9
2012-03-01Fix PDO's _version() method where it used to return client version instead ↵Andrey Andreev1-4/+3
of the server one
2012-02-27Fixed a db_set_charset() bugAndrey Andreev1-16/+1
2012-02-19Renaming Active Record to Query Builder across the systemJamie Rumbelow1-2/+2
2012-02-18Fixed meta table method(s) for PDOTaufan Aditya1-0/+21
2012-02-13Added missing spaceTimothy Warren1-1/+1
2012-02-13Re-added if ! empty clauseTimothy Warren1-1/+4
2012-02-13Refixed Old-style pdo connection stringTimothy Warren1-7/+6
2012-02-13Semicolon automatically added if not exists after hostname, if only database ↵Taufan Aditya1-2/+7
was not empty
2012-02-12Fixed rtrim issue in hostname fragment, for backward compabilityTaufan Aditya1-5/+3
2012-02-10Changed double quotes to singleTimothy Warren1-1/+1
2012-02-10Fixed old-style pdo connection stringTimothy Warren1-1/+5
2012-02-10Grammar correctionTaufan Aditya1-1/+1
2012-02-09TypoTaufan Aditya1-1/+1
2012-02-09Change PHP.net mirror to the main mirrorTaufan Aditya1-2/+2
2012-02-09Fixed PDOTaufan Aditya1-73/+199
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1
2011-12-08Exception for sqlitetoopay1-1/+4
2011-11-28Fixed sytax error in pdo driverTimothy Warren1-4/+0
2011-11-22Merge master (2.1.0) and fixed conflicts.Phil Sturgeon1-0/+4
2011-11-22Readded PDO drivers.Phil Sturgeon1-15/+15
2011-10-31Misc formatting fixesTimothy Warren1-7/+8
2011-10-31Set charset in DSN if PHP >= 5.3.6Timothy Warren1-1/+7
2011-10-31Changed mysql charset to PDO optionTimothy Warren1-4/+7
2011-10-27Fixed LIKE statement escaping issuesTimothy Warren1-12/+13
2011-10-27if statment code style updateTimothy Warren1-0/+792
2011-10-26Misc formatting fixesTimothy Warren1-6/+7
2011-10-26Set charset in DSN if PHP >= 5.3.6Timothy Warren1-0/+6
2011-10-25Changed mysql charset to PDO optionTimothy Warren1-6/+6
2011-10-21Minor format fixTimothy Warren1-2/+0
2011-10-21Fix mysql charset bugTimothy Warren1-4/+22
2011-10-07if statment code style updateTimothy Warren1-6/+6
2011-10-07Added check for quote markTimothy Warren1-2/+5
2011-10-07Revert "Added check for quote mark"Timothy Warren1-5/+21
This reverts commit 0e762b32a003dd8a9b805fb95ee7aeb3616c41e3.
2011-10-07Added check for quote markTimothy Warren1-21/+5
2011-10-06Changed all db constructors to newer syntax, made insert_id() function more ↵Timothy Warren1-1/+19
convenient for postgres on pdo driver