1. c3a4a8d Whitespace cleanup in db classes by Pascal Kriete · 14 years ago
  2. 8761ef5 Uppercasing some stray lowercase keywords for code consistency by Pascal Kriete · 14 years ago
  3. a12216b Reverted recent MySQL backtick escaping as some queries were double-escaping. by Phil Sturgeon · 14 years ago
  4. 3167eeb MySQL Driver will now wrap field names for insert(), update() and replace() with backticks (`) so fields like "default" and "order" will not cause SQL errors. by Phil Sturgeon · 14 years ago
  5. 3bb336c Automated merge with https://bitbucket.org/ellislab/codeigniter by Phil Sturgeon · 14 years ago
  6. 3ef0d28 Automated merge with http://hg.ellislab.com/CodeIgniter2 by Pascal Kriete · 14 years ago
  7. 43ded23 Adding batch insert and batch update to the mysqli driver. by Pascal Kriete · 14 years ago
  8. 0711dc8 Hey look, it's 2011 by Greg Aker · 14 years ago
  9. 27324cd Use arrays in DBForge for constraint for things like decimal, float, numeric, enum and set. by Phil Sturgeon · 14 years ago
  10. 678256c Fix #93 Updating postgres dbforge create table method. Thanks to James Gifford for the patch. http://codeigniter.com/forums/viewthread/73392/ by Greg Aker · 14 years ago
  11. 741de1c Updating PHP requirements in files 5.1.6 by Greg Aker · 14 years ago
  12. dd67197 Cleanup of stray spaces and tabs by Barry Mieny · 14 years ago
  13. c5b044b Removed deprecated _drop_database() and _create_database() functions from db utility drivers. by Greg Aker · 14 years ago
  14. 757dda6 Fixing a bug where odbc/mssql/oci8 db drivers would encounter a PHP error due to a function being moved from the input to security class. by Greg Aker · 15 years ago
  15. 4bde110 fixed a fatal PHP error in SQLite Forge _create_table() by Derek Jones · 15 years ago
  16. 20aa2bd added batch insert/update and replace methods to MySQL driver by Derek Jones · 15 years ago
  17. fac8fbc display_error in driver needs no db reference by Derek Allard · 15 years ago
  18. 4860ec5 fixing a series of errors in (ironically) error display in some database drivers by Derek Allard · 15 years ago
  19. 0d42489 Misspelled class property in db class. _like_escape_chr, not _like_escape_char by Greg Aker · 15 years ago
  20. 1edde30 Fixing bug in DB Driver where identifiers could be escaped in some drivers that can't accept it in the list_fields() function. by Greg Aker · 15 years ago
  21. 7f3719f updated copyrights by Derek Jones · 15 years ago
  22. 64c398b Modified MSSQL driver to use mssql_get_last_message() for error messages. by Derek Allard · 15 years ago
  23. fc395a1 updated copyrights to 2009 by Derek Jones · 16 years ago
  24. 87cbafc added reconnect() method to db drivers by Derek Jones · 16 years ago
  25. 3c11b6f updated _list_tables() in db drivers to escape the db prefix for LIKE wildcards by Derek Jones · 16 years ago
  26. e4ed583 added LIKE condition escaping to all drivers and Active Record by Derek Jones · 16 years ago
  27. 436e6e2 $CI->_remove_invisible_characters($str); by Derek Jones · 16 years ago
  28. e37ab38 DB count_all() not returns an integer always by Derek Allard · 16 years ago
  29. 2067d1a Changing EOL style to LF by Derek Allard · 16 years ago
  30. a0e8629 Fixed a bug in which identifers were not being escaped properly when reserved characters were used by Rick Ellis · 16 years ago
  31. 4ba802d added a conditional for $this->port in the mysqli driver. Apparently it doesn't like being sent an empty string. by Derek Jones · 16 years ago
  32. b5a9aca Set primary key to zero, since there isn't a good way to retrieve it. Bug report: 5172 by Rick Ellis · 16 years ago
  33. c8bde82 Added port support to MS SQL by Rick Ellis · 16 years ago
  34. d634148 Added port support to mysqli by Rick Ellis · 16 years ago
  35. d22e53b Added support for the port setting in mysql by Rick Ellis · 16 years ago
  36. 1e2c33e by Rick Ellis · 16 years ago
  37. 1cd997a Added backticks to field names by Rick Ellis · 16 years ago
  38. 63c361d Fixed a tab issue by Rick Ellis · 16 years ago
  39. 5e189cc Added a call to the parent contructor, as this was causing errors. by Rick Ellis · 16 years ago
  40. cba158c Added brackets around database name in MS SQL driver when selecting the database, in the event that reserved characters are used in the name (bug report: 4915) by Rick Ellis · 16 years ago
  41. 605a07a Fixed a number of bug reports related to table/db names not being escaped or prefixed correctly. by Rick Ellis · 16 years ago
  42. 5952359 Fixed a number of bug reports related to table/db names not being escaped or prefixed correctly. by Rick Ellis · 16 years ago
  43. 5aa8c60 Explicitly added driver name variable in each DB driver, based on this bug report: #4436 by Rick Ellis · 16 years ago
  44. ca86a7c by Rick Ellis · 16 years ago
  45. 218839a Fixed bug (#3472) that was adding quotes incorrectly. by Rick Ellis · 16 years ago
  46. 06a2e74 Oops! Didn't realize that the CI super object was not being used by the main Driver. Fixed... by Rick Ellis · 16 years ago
  47. 482ee43 Fixed Oracle bug (#3306) that was preventing multiple queries in one action by Rick Ellis · 16 years ago
  48. ceb6f0b Added $params to ODBC constructor, based on bug report #3374 by Rick Ellis · 16 years ago
  49. b6ba6a3 Added support for empty connection strings, based on bug # 3135 by Rick Ellis · 16 years ago
  50. 2cad6e9 There was a call to $this->input->_remove_invisible_characters($str); It should have been: $this->input->CI->_remove_invisible_characters($str); by Rick Ellis · 16 years ago
  51. ff73401 Did a little clean up. Nothing that affected functionality by Rick Ellis · 16 years ago
  52. 52dc8ca Added backticks to column names when using insert_string and update_string. Relates to this bug report: http://codeigniter.com/bug_tracker/bug/4509/ by Rick Ellis · 16 years ago
  53. b3a3bf3 removed some legacy escaping code from _backup() in the MySQL utility, fixing bug 4536 by Derek Jones · 16 years ago
  54. d16bab1 added removal of non-printing characters to escape_str() of drivers that do not have native PHP escaping mechanisms by Derek Jones · 16 years ago
  55. 9ba2bf2 updated copyright by Rick Ellis · 16 years ago
  56. 37b3ecf updated copyright by Rick Ellis · 16 years ago
  57. 993925b whitespace fixes a minor re-ordering of the changelog by Derek Allard · 16 years ago
  58. fd7943a Fixed a double opening <p> tag in the index pages of each system directory. by Derek Allard · 17 years ago
  59. bd44009 made MySQL/MySQLi forge use explicitly named KEYs, added ability to specify multi-column non-primary keys in table creation by Derek Jones · 17 years ago
  60. 0b59f27 Some sweeping syntax changes for consistency: by Derek Jones · 17 years ago
  61. a3ffbbb Removed closing PHP tags, replaced with a comment block identifying the end of the file by Derek Jones · 17 years ago
  62. c7deac9 Undoing change committed in r1115 by Derek Jones · 17 years ago
  63. 5583e1a removed closing PHP tag from all framework files by Derek Jones · 17 years ago
  64. 0509775 Added checks for objects in DB driver instead of just resources to accommodate MySQLi, and fixed check in mysqli_result.php checking for a resource. by Derek Jones · 17 years ago
  65. 7327499 Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to the File Helper. by Derek Allard · 17 years ago
  66. b94b89c Added a valid_emails rule to the Validation class. by Derek Allard · 17 years ago
  67. d7f4211 The MySQLi forge class is now in sync with MySQL forge. by Derek Allard · 17 years ago
  68. 2385d30 Added rename_table() into DBForge. by Derek Allard · 17 years ago
  69. 3ad8efe added constants.php file and implemented constants for file system modes by Derek Jones · 17 years ago
  70. 9a4d1da Fixed an AR_caching error where it wasn't tracking table aliases (#3463) by Derek Allard · 17 years ago
  71. b1f90db reapplied implementation of db_set_charset() for MySQLi... by Derek Jones · 17 years ago
  72. 5b4d532 fixes to _create_table() in sqlite_forge.php: by Derek Jones · 17 years ago
  73. d33972b changed escape_str() in mysqli_driver() to use is_object() instead of is_resource() to test $this->conn_id by Derek Jones · 17 years ago
  74. 903cc98 remove backticks from ODBC by Derek Allard · 17 years ago
  75. c074338 database enhancements, compatibility additions and bugfixes by Derek Allard · 17 years ago
  76. 70529a7 driver escape_table fixes by Derek Allard · 17 years ago
  77. 41d4b59 escape_table made consistent with mysql driver across all drivers by Derek Allard · 17 years ago
  78. 7555ade clarifying comment on sqlite escape table by Derek Allard · 17 years ago
  79. 1564813 changes for enhanced database compatibility by Derek Allard · 17 years ago
  80. a47a2e2 added functionality for setting client character set and collation in MySQLi driver by Derek Jones · 17 years ago
  81. 32cf7eb Changed the behaviour of Active Record's update() to make the WHERE clause optional (#3395) by Derek Allard · 17 years ago
  82. 9b3e7b5 Added and documented Active Record caching. Made AR fully database-prefix aware by Derek Allard · 17 years ago
  83. 7b80700 remove parenthesis from postrgre _from_tables by Derek Allard · 17 years ago
  84. 11c75ea Removed support for db_backup in MySQLi due to incompatible functions. by Derek Allard · 17 years ago
  85. c6ad023 Abstracted FROM table listing in Active Record for databases that do not support parenthetic grouping of tables to explicitly define operator precedence by Derek Jones · 17 years ago
  86. b52bdc4 fixed a variable call to $this-> by Derek Allard · 17 years ago
  87. 4acd792 fix a postgre escape error by Derek Allard · 17 years ago
  88. db708af added an "unsupported" error to insert_id() in oracle by Derek Allard · 17 years ago
  89. 7a9193a replaced www.codeigniter.com with codeigniter.com by Derek Jones · 17 years ago
  90. 3d879d5 ExpressionEngine Dev Team in credit by Derek Allard · 17 years ago
  91. 4a9cb96 Fixed the bugfix for #3260! by Derek Jones · 17 years ago
  92. 8435771 fixed bug #3260 tightened type checking before outputting MySQL field as NULL by Derek Jones · 17 years ago
  93. f6cd45c fix for count_all by Derek Allard · 17 years ago
  94. 6157938 by Derek Allard · 17 years ago
  95. cdbdf2d special fix for $first_word_only to work with other changes to _protect_identifiers() by Derek Jones · 17 years ago
  96. 68d021b === instead of !== ::blush:: by Derek Jones · 17 years ago
  97. 91f50b6 fix for single word identifiers with no spaces that need protecting in _protect_identifiers() by Derek Jones · 17 years ago
  98. 39b622d Many new Active Record functions, and another whack of stuff by Derek Allard · 17 years ago
  99. aa7f769 fixed typo: $field_names[] vs $Ffield_names[] by Derek Allard · 17 years ago
  100. e77d77c Added support for limit() into update() and delete() statements in Active Record. by Derek Allard · 17 years ago