1. 1720a6a Fix #2579: Query Builder's "no escape" functionality didn't work properly with query cache by Andrey Andreev · 11 years ago
  2. c6ac748 Small docblock fix by vlakoff · 11 years ago
  3. 35e3b0b [ci skip] Remove some whitespace chars by Andrey Andreev · 11 years ago
  4. 17a0528 Cleanup PR #2719 by GDmac · 11 years ago
  5. e1b8683 Fix #2406 query builder cache by GDmac · 11 years ago
  6. 5e3d48c Fix a bug when multiple calls to QB's _compile_wh() or _compile_group_by() are required by Andrey Andreev · 11 years ago
  7. 710c4ed Fixing the dumbest parser error ever by Andrey Andreev · 11 years ago
  8. 8adac96 Fix CI_DB_query_builder::_merge_cache() triggering E_WARNINGs by Andrey Andreev · 11 years ago
  9. b61affd Merge pull request #2627 from vlakoff/develop-3 by Andrey Andreev · 11 years ago
  10. 9f8e299 Adjust a few phpdoc in query builder code by vlakoff · 11 years ago
  11. e6c4d5b Code cleanup in db->order_by() by vlakoff · 11 years ago
  12. 5b55c15 Fix #2585 by Andrey Andreev · 11 years ago
  13. 79f888b Fix #2501 & another -related bug by Andrey Andreev · 11 years ago
  14. 219565d Add a (default) CI_DB_query_builder::_update_batch() method by Andrey Andreev · 12 years ago
  15. 3e01437 Manually apply PR #2234 by Andrey Andreev · 12 years ago
  16. 55bbd72 Fix issue #2179 by Andrey Andreev · 12 years ago
  17. 912f1bc A few adjustments to previous commit by vlakoff · 12 years ago
  18. 1228fe2 Replace is_null() with === / !== NULL by vlakoff · 12 years ago
  19. 80500af [ci skip] Happy new year by Andrey Andreev · 12 years ago
  20. 4296a65 update for Issue #2064 (changed docblocks which return $this or only call a method that returns $this to @return CI_DB_class_name) by Andrew Podner · 12 years ago
  21. 838a9d6 [ci skip] Cleaned some spaces by Andrey Andreev · 12 years ago
  22. 4173823 Fix #2041 by Andrey Andreev · 12 years ago
  23. 3a5efc2 Fix issue #2015 by Andrey Andreev · 12 years ago
  24. eae17d1 Fix issues #751 and #2004 by Andrey Andreev · 12 years ago
  25. 02e4cd7 Fix PostgreSQL WHERE with boolean values by Andrey Andreev · 12 years ago
  26. 98e46cf Add seed values support for Query Builder order_by by Andrey Andreev · 12 years ago
  27. 083e3c8 Fix #589 by Andrey Andreev · 12 years ago
  28. bdd9c11 Add an optional escape parameter to insert() and insert_batch() by Andrey Andreev · 12 years ago
  29. ae85eb4 DocBlocks for base DB classes by Andrey Andreev · 12 years ago
  30. c5536aa Manually apply PR #1594 (fixing phpdoc page-level generation/warnings) by Andrey Andreev · 12 years ago
  31. b107e57 Remove var_dump() missed in a previous commit by Andrey Andreev · 12 years ago
  32. 87f4dc2 Fix an update_string() bug by Andrey Andreev · 12 years ago
  33. b05f506 Fix issue #59 by Andrey Andreev · 12 years ago
  34. e474258 Add missing delimiter in preg_quote() occurences (fix #1929) by Andrey Andreev · 12 years ago
  35. 9f808b0 An alternative to affected_rows() for insert_batch() and update_batch() (ref #126) by Andrey Andreev · 12 years ago
  36. 5fd3ae8 [ci skip] style and phpdoc-related changes (rel #1295) by Andrey Andreev · 12 years ago
  37. 93dd2f2 Fix issue #1925 (order_by() with = FALSE) by Andrey Andreev · 12 years ago
  38. a53ea84 Alter _compile_order_by() to re-fix MSSQL, SQLSRV limit() by Andrey Andreev · 12 years ago
  39. 082aa40 Fix where() & having() escaping/prefixing literal values containing a period by Andrey Andreev · 12 years ago
  40. a23e10f Really fix order_by() by Andrey Andreev · 12 years ago
  41. fc043b3 Fix order_by() by Andrey Andreev · 12 years ago
  42. cc02db9 Fix where_in() by Andrey Andreev · 12 years ago
  43. f2ec8b8 Fix where() with literal multiple conditions by Andrey Andreev · 12 years ago
  44. 0bcf590 Fix having(), group_by() by Andrey Andreev · 12 years ago
  45. 13f5054 Fix delete() with multiple tables and an erroneous variable by Andrey Andreev · 12 years ago
  46. 9d3aa1b Fix _get_operator() for 'LIKE expr ESCAPE' by Andrey Andreev · 12 years ago
  47. bffe3fb Merge changes from develop by Andrey Andreev · 12 years ago
  48. e78f815 Missed an underscore ... doh by Andrey Andreev · 12 years ago
  49. 7eaa14f Alter fix for issue #1257 by Andrey Andreev · 12 years ago
  50. cd50592 Fix issue #1257 by Andrey Andreev · 12 years ago
  51. 2d48623 Implement _compile_order_by() by Andrey Andreev · 13 years ago
  52. 96feb58 Implement group_by() compiler and no_escape feature by Andrey Andreev · 13 years ago
  53. c9b924c Remove _limit()'s extra parameters and qb_limit, qb_offset unneeded typecasts + add _compile_group_by() method by Andrey Andreev · 13 years ago
  54. 94611df Remove qb_wherein property by Andrey Andreev · 13 years ago
  55. d40459d Merge where() and having() logic - it's structurally identical and only the keyword differs by Andrey Andreev · 13 years ago
  56. b047865 Remove dependancies on qb_like and remove unneeded parameters from _delete(), _like(), _update(), _update_batch() by Andrey Andreev · 13 years ago
  57. ededc4a Change _like() to append to the qb_where array by Andrey Andreev · 13 years ago
  58. 6e70475 Fix WHERE escaping/prefixing by Andrey Andreev · 13 years ago
  59. 49aa45b Fix a few join() bugs by Andrey Andreev · 13 years ago
  60. 7554611 Move _insert() and _update() defaults from Query Builder to DB_driver so that they're available for use by insert_string() and update_string() at all times by Andrey Andreev · 13 years ago
  61. eb22d54 Fix get_where() test by Andrey Andreev · 13 years ago
  62. 40f1404 Fix issues #1529 & #1530 by Andrey Andreev · 13 years ago
  63. 35443c6 Change where() to skip dbprefix (until a better solution is available) by Andrey Andreev · 13 years ago
  64. 2c35b64 Add a default _limit() method to the Query Builder class by Andrey Andreev · 13 years ago
  65. 58803fb Add _where() changes from pull #1517 to the PostgreSQL driver by Andrey Andreev · 13 years ago
  66. bc69f36 fixed query grouping when using where($array) syntax by WanWizard · 13 years ago
  67. 777153d Changed limit() and offset() to ignore NULL values by Andrey Andreev · 13 years ago
  68. 3751f93 Add join() USING support by Andrey Andreev · 13 years ago
  69. 929fd2d Improve escaping, support for table names with spaces and fix where() for strings with no spaces around operators by Andrey Andreev · 13 years ago
  70. f512b73 Spelling fixes - `wether` to `whether` by Alex Bilbie · 13 years ago
  71. fe642da All Query Builder methods to respect _protect_identifiers by default by Andrey Andreev · 13 years ago
  72. 498c1e0 Added an escape parameter to where_in(), or_where_in(), where_not_in(), or_where_not_in() and made where(), or_where() to default the escape setting to the value of _protect_identifiers by Andrey Andreev · 13 years ago
  73. d24160c Changed order_by() default escaping to _protect_identifiers by Andrey Andreev · 13 years ago
  74. 974c75b Fix having() by Andrey Andreev · 13 years ago
  75. e10fb79 Fix issue #1483 by Andrey Andreev · 13 years ago
  76. 8295c84 Fix issue #1482 by Andrey Andreev · 13 years ago
  77. 4287023 join() with multiple conditions and optional escape parameter by Andrey Andreev · 13 years ago
  78. 1d1d7ff Fix an issue introduced in 88cb278a1e52dd7db5b0ebe2037c12f0dd69c0c1 by Andrey Andreev · 13 years ago
  79. e630279 Fix a join() issue by Andrey Andreev · 13 years ago
  80. 88cb278 Fix issue #1456 by Andrey Andreev · 13 years ago
  81. 650b4c0 Remove unused qb_order property + other minor changes by Andrey Andreev · 13 years ago
  82. 392b6ad Fix _where() with multiple condition custom query by Andrey Andreev · 13 years ago
  83. 9c14f65 Fix _where() escaping operators by Andrey Andreev · 13 years ago
  84. 5a25718 Merge branch 2.1-stable into develop by Andrey Andreev · 13 years ago
  85. 6600b69 Return $this when values ($key OR $values) is NULL by Rafael Queiroz · 13 years ago
  86. c78e56a Add a default _from_tables() method to CI_DB_query_builder and remove it from most of the drivers by Andrey Andreev · 13 years ago
  87. fc11dcc Alter SQLite3's version() method and clear some spaces by Andrey Andreev · 13 years ago
  88. e4c3019 Revert/optimize some changes from 48a2baf0e288accd206f5da5031d29076e130792 by Andrey Andreev · 13 years ago
  89. 142b618 Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop by Phil Sturgeon · 13 years ago
  90. 48a2baf Replaced `==` with `===` and `!=` with `!==` in /system/database by Alex Bilbie · 13 years ago
  91. 2d8707f Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop by Phil Sturgeon · 13 years ago
  92. 7b5eb73 Fix issue #1273 and some cleanup in Query Builder by Andrey Andreev · 13 years ago
  93. f777d3d Fixed conflicts with 2.1-stable merge. by Phil Sturgeon · 13 years ago
  94. 193d448 Minor assignment fix. Can not use $array[] for reading. by George Petsagourakis · 13 years ago
  95. d6ce1e9 Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into develop by Jamie Rumbelow · 13 years ago
  96. 0cd8c79 Just the method, not the property by Jamie Rumbelow · 13 years ago
  97. 0c09299 accounting for the rename of protect_identifiers by Jamie Rumbelow · 13 years ago
  98. 17c1bed Updating a couple more references to the AR class in documentation [#1061] by Jamie Rumbelow · 13 years ago
  99. 3b1355c Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into develop by Jamie Rumbelow · 13 years ago
  100. ae123e0 Fixing an error in #1061 by Jamie Rumbelow · 13 years ago