-
Notifications
You must be signed in to change notification settings - Fork 115
Comparing changes
Open a pull request
base repository: nilportugues/php-sql-query-builder
base: v1.1.1
head repository: nilportugues/php-sql-query-builder
compare: master
Commits on Nov 2, 2015
-
Configuration menu - View commit details
-
Copy full SHA for e3d8c7c - Browse repository at this point
Copy the full SHA e3d8c7cView commit details
Commits on Nov 16, 2015
-
Malte Riesch committed
Nov 16, 2015 Configuration menu - View commit details
-
Copy full SHA for 65ae980 - Browse repository at this point
Copy the full SHA 65ae980View commit details -
Merge pull request #68 from malteriesch/master
added where::asLiteral
Configuration menu - View commit details
-
Copy full SHA for cf7fc7b - Browse repository at this point
Copy the full SHA cf7fc7bView commit details
Commits on Nov 17, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 916376b - Browse repository at this point
Copy the full SHA 916376bView commit details
Commits on Dec 2, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 3dca30b - Browse repository at this point
Copy the full SHA 3dca30bView commit details
Commits on Dec 15, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 8f8902d - Browse repository at this point
Copy the full SHA 8f8902dView commit details
Commits on Dec 21, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 3bf594a - Browse repository at this point
Copy the full SHA 3bf594aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d9dc25 - Browse repository at this point
Copy the full SHA 4d9dc25View commit details
Commits on Feb 4, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 92f1990 - Browse repository at this point
Copy the full SHA 92f1990View commit details -
Configuration menu - View commit details
-
Copy full SHA for e417995 - Browse repository at this point
Copy the full SHA e417995View commit details -
Nil Portugues Caldero committed
Feb 4, 2016 Configuration menu - View commit details
-
Copy full SHA for 41a192c - Browse repository at this point
Copy the full SHA 41a192cView commit details
Commits on Feb 8, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 01de3cf - Browse repository at this point
Copy the full SHA 01de3cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for ff624c4 - Browse repository at this point
Copy the full SHA ff624c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for b6af3ae - Browse repository at this point
Copy the full SHA b6af3aeView commit details
Commits on Mar 6, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 23afc1e - Browse repository at this point
Copy the full SHA 23afc1eView commit details
Commits on May 6, 2016
-
select orderby logic has changed
Stanisław Śledziona committedMay 6, 2016 Configuration menu - View commit details
-
Copy full SHA for 8df6531 - Browse repository at this point
Copy the full SHA 8df6531View commit details
Commits on May 8, 2016
-
Merge pull request #75 from qlarin/orderby
select orderby logic changes
Configuration menu - View commit details
-
Copy full SHA for 877d54f - Browse repository at this point
Copy the full SHA 877d54fView commit details
Commits on May 28, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 3464371 - Browse repository at this point
Copy the full SHA 3464371View commit details
Commits on Jun 21, 2017
-
Accept Column object through setColumns.
Select->setColumns was limited to accept string... having it accept Column type object extends ability to add complex functions or manipulations.
Configuration menu - View commit details
-
Copy full SHA for 4b2fc1d - Browse repository at this point
Copy the full SHA 4b2fc1dView commit details -
Support for specifying column in condition.
Nice to have ability to passing on instance of Column as part of condition. Helpful to build complex query. Example: ``` where()->equals( new Column("aCol", "tmpTable"), 1); ```
Configuration menu - View commit details
-
Copy full SHA for 13fd053 - Browse repository at this point
Copy the full SHA 13fd053View commit details -
Merge pull request #86 from prasad83/master
Accept Column object through setColumns.
Configuration menu - View commit details
-
Copy full SHA for a5f6c98 - Browse repository at this point
Copy the full SHA a5f6c98View commit details -
Merge pull request #84 from marcusirgens/patch-1
Allows writing "0" to row
Configuration menu - View commit details
-
Copy full SHA for 4decdb5 - Browse repository at this point
Copy the full SHA 4decdb5View commit details
Commits on Mar 27, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 4cf4569 - Browse repository at this point
Copy the full SHA 4cf4569View commit details -
Configuration menu - View commit details
-
Copy full SHA for e0b405f - Browse repository at this point
Copy the full SHA e0b405fView commit details -
Merge branch 'dev-where-bug-fix' of https://github.com/mmuhasan/php-s…
…ql-query-builder into dev-where-bug-fix
Configuration menu - View commit details
-
Copy full SHA for 7a1275f - Browse repository at this point
Copy the full SHA 7a1275fView commit details
Commits on Jul 19, 2018
-
Merge pull request #96 from mmuhasan/dev-where-bug-fix
Fix the where clause issue to solve issue #73
Configuration menu - View commit details
-
Copy full SHA for a941d33 - Browse repository at this point
Copy the full SHA a941d33View commit details
Commits on Aug 15, 2018
-
Allow custom self column in join
The current `JoinQuery::addJoin()` method does not allow for a custom `Column`. Below is an example of the use case for this change: ```php $query = new Select(); $query ->setTable('company') ->setColumns([ 'company_id' => 'id', 'name' => 'name', ]) ->join( 'field_company_code', 'id', 'entity_id', ) ->join( 'company_codes', new Column('target_id', 'field_company_code'), new Column('id', 'company_codes'), ['code' => 'code'] ); ``` This query structure is common in Drupal when selecting values from fields on entities that reference other entities through the Field and Entity API.
Configuration menu - View commit details
-
Copy full SHA for 2c2b3ab - Browse repository at this point
Copy the full SHA 2c2b3abView commit details
Commits on Aug 20, 2018
-
Merge pull request #100 from nathandentzau/nathandentzau/join-custom-…
…self-column Allow custom self column in join
Configuration menu - View commit details
-
Copy full SHA for 277e87a - Browse repository at this point
Copy the full SHA 277e87aView commit details
Commits on Feb 4, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 2056f9e - Browse repository at this point
Copy the full SHA 2056f9eView commit details
Commits on Feb 5, 2019
-
Merge pull request #104 from Sevavietl/master
Do not reset placeholders in set writers
Configuration menu - View commit details
-
Copy full SHA for 8991871 - Browse repository at this point
Copy the full SHA 8991871View commit details
Commits on Nov 5, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 2aa0f1f - Browse repository at this point
Copy the full SHA 2aa0f1fView commit details
Commits on Mar 5, 2020
-
Configuration menu - View commit details
-
Copy full SHA for c81d63d - Browse repository at this point
Copy the full SHA c81d63dView commit details
Commits on Apr 7, 2020
-
Merge pull request #113 from makeey/master
Do not filter values in AbstractCreationalQuery
Configuration menu - View commit details
-
Copy full SHA for b00877e - Browse repository at this point
Copy the full SHA b00877eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 889e9e7 - Browse repository at this point
Copy the full SHA 889e9e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for cc34010 - Browse repository at this point
Copy the full SHA cc34010View commit details
Commits on Jan 3, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 8f340cf - Browse repository at this point
Copy the full SHA 8f340cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1a9d52 - Browse repository at this point
Copy the full SHA d1a9d52View commit details -
Merge pull request #131 from nilportugues/svg-diagram
Add diagram.svg to readme
Configuration menu - View commit details
-
Copy full SHA for ca6e9dd - Browse repository at this point
Copy the full SHA ca6e9ddView commit details
There are no files selected for viewing