Benjamin Morel
|
8d7ba1aebb
|
Fixed AbstractQuery::getParameter() documented return type
|
2015-03-17 15:53:09 +01:00 |
|
Lukáš Lukáč
|
5e6ec8ebf3
|
Incorrect @throws doc. in getSingleScalarResult
|
2015-01-20 17:21:43 +01:00 |
|
Marco Pivetta
|
6fc0d84b7a
|
DDC-3427 - s/EntityManager/EntityManagerInterface in type-hints
|
2015-01-16 14:21:30 +01:00 |
|
Marco Pivetta
|
8e28cb9119
|
Removing useless $self use statements, as PHP 5.4 supports $this in closures
|
2015-01-14 20:12:27 +01:00 |
|
Benjamin Morel
|
fbcf18cf33
|
Changed $this return type to static in AbstractQuery
This allows IDEs and static code analysis tools to properly understand the return type when chaining methods, for example when using the QueryBuilder.
|
2015-01-11 16:48:09 +00:00 |
|
Guilherme Blanco
|
4874070b3f
|
Merge branch 'feature/default-query-hints' of https://github.com/Strate/doctrine2 into Strate-default-query-hints
|
2014-05-15 01:15:34 +00:00 |
|
Benjamin Morel
|
08f6291350
|
Cleaned up further unused imports.
|
2014-02-09 23:45:22 +00:00 |
|
Strate
|
e8d47fa9a3
|
Added a new configuration option: defaultQueryHints, which allows to populate all queries by default set of hints.
|
2014-02-04 15:51:53 +01:00 |
|
Michaël Perrin
|
1032a16db2
|
Simpler way to handle Collection parameters in DQL queries (refs #DDC-2319)
|
2013-12-17 11:37:17 +01:00 |
|
fabios
|
0a66a2bc09
|
CS/Doc Fixes
|
2013-12-16 11:05:05 -05:00 |
|
fabios
|
fb98277783
|
Fix docs
|
2013-12-16 11:05:05 -05:00 |
|
fabios
|
d135e402bb
|
handle update/delete queries
|
2013-12-16 11:05:05 -05:00 |
|
Fabio B. Silva
|
61bff7d5f6
|
Fix CS and update docs
|
2013-12-16 11:05:04 -05:00 |
|
fabios
|
1bfa8f0fc3
|
Extract cache config
|
2013-12-16 11:05:04 -05:00 |
|
Fabio B. Silva
|
3140593e9b
|
Second level cache
|
2013-12-16 11:05:04 -05:00 |
|
David Stensland
|
089006927e
|
[DDC-2655] Don't let getOneOrNullResult throw NoResultException
|
2013-10-09 11:38:33 -04:00 |
|
Guilherme Blanco
|
354d7050dc
|
Merge pull request #720 from bakura10/fix-paginator
Allow to have non-distinct queries
|
2013-08-05 20:59:12 -07:00 |
|
Guilherme Blanco
|
c28b457221
|
Modified Hydrators to be per-query instances instead of a singleton-like approach.
|
2013-07-28 20:30:42 -04:00 |
|
Michaël Gallego
|
3f112db725
|
Allow to have non-distinct queries
|
2013-07-09 17:31:30 +02:00 |
|
Pascal Borreli
|
30b050b44c
|
Fixed typos
|
2013-04-06 14:31:27 +00:00 |
|
Benjamin Eberlei
|
64b2ecfefc
|
[DDC-2224] Rewrite instanceof feature with parameter needle ClassMetadata breaks caching of queries.
|
2013-04-04 20:22:48 +02:00 |
|
Pascal Borreli
|
a2cd0f5804
|
Fixed typos
|
2013-03-11 00:08:58 +00:00 |
|
Benjamin Eberlei
|
ce594fb152
|
[DDC-2256] Cleanup patch, move dependency on EntityManager out of ResultSetMapping and let AbstractQuery perform the translation.
|
2013-02-13 09:05:35 +01:00 |
|
Szczepan Cieślik
|
d7f82221d1
|
[DDC-2256] Moved aliases translation to ResultSetMapping, fixed tests.
|
2013-01-25 12:06:13 +01:00 |
|
Benjamin Morel
|
7869ec714d
|
Fixed unused 'use' statements.
Fixed missed documentation issues in Doctrine\ORM
|
2012-12-13 18:19:21 +00:00 |
|
Benjamin Morel
|
dacdd6cd89
|
Documentation (docblock) fixes.
|
2012-12-01 16:28:06 +00:00 |
|
Fabio B. Silva
|
c4e6a04676
|
remove duplicate return statement
|
2012-11-05 22:23:44 -02:00 |
|
Fabio B. Silva
|
a09a5b9b7b
|
Fix DDC-2084
|
2012-11-05 22:23:44 -02:00 |
|
Jeremy Marc
|
26dd533662
|
Compare to null instead of using isset
|
2012-11-04 19:04:13 -08:00 |
|
Jeremy Marc
|
84477440b6
|
Allow 0 id for Entity
When using a 0 id, it's throwing InvalidArgumentException (Binding entities to query parameters only allowed for entities that have an identifier.)
|
2012-11-04 17:41:08 -08:00 |
|
Konstantin Kuklin
|
34d8843fd6
|
improve phpdoc
|
2012-09-21 03:20:06 +04:00 |
|
Guilherme Blanco
|
9445502885
|
Removed un-necessary getIterator().
|
2012-05-29 15:14:08 -04:00 |
|
Guilherme Blanco
|
6521e51170
|
Added missing BC compatibility in QueryBuilder.
|
2012-05-29 14:52:30 -04:00 |
|
Guilherme Blanco
|
161ae31a7e
|
Adde more BC compatibility in setParameters.
|
2012-05-29 14:41:32 -04:00 |
|
Guilherme Blanco
|
b3e7493278
|
Made setParameters()/excute()/iterate() BC compatible.
|
2012-05-29 14:25:54 -04:00 |
|
Guilherme Blanco
|
79ff1f10d2
|
Optimized getParameter.
|
2012-05-28 12:20:35 -04:00 |
|
Guilherme Blanco
|
1635e0af4b
|
[DDC-1840] Implemented parameters as a collection.
|
2012-05-28 12:16:42 -04:00 |
|
Benjamin Eberlei
|
70458b2f48
|
LGPL => MIT
|
2012-05-26 14:37:00 +02:00 |
|
Marco Pivetta
|
cbe4987e18
|
Using Doctrine\Common\Util\ClassUtil for class_name resolutionThis avoids exceptions when passing a Proxy instance to the public API of the EntityManager, ClassMetadataFactory or UnitOfWork when the Proxy itself isn't generated by the EntityManager itself, while discovering the correct ClassMetadata instance for the proxy
|
2012-04-07 18:53:33 +02:00 |
|
Benjamin Eberlei
|
0b3577f2d2
|
[DDC-1766] Rewrite getHydrationCacheId() to use existing processParameterValue() method. Other code style changes.
|
2012-04-05 22:40:40 +02:00 |
|
Benjamin Eberlei
|
1095fb39cb
|
[DDC-1766] More cleanups
|
2012-04-05 00:27:23 +02:00 |
|
Benjamin Eberlei
|
f7496b1482
|
[DDC-1766] Cleaned up code.
|
2012-04-05 00:26:09 +02:00 |
|
Benjamin Eberlei
|
d31c7f5e2b
|
[DDC-1766] Explain details of Hydration cache, introduce AbstractQuery#setResultCacheProfile method
|
2012-04-04 23:55:14 +02:00 |
|
Benjamin Eberlei
|
c32a77e6be
|
[DDC-1766] Add usage of default result cache driver, add more docs.
|
2012-04-04 23:47:32 +02:00 |
|
Benjamin Eberlei
|
306f9e0ca2
|
[DDC-1766] Rename closure
|
2012-04-04 23:21:06 +02:00 |
|
Benjamin Eberlei
|
3047c4b955
|
[DDC-1766] Initial implementation of hydration cache.
|
2012-04-04 23:10:30 +02:00 |
|
Fabio B. Silva
|
df8626b949
|
Fix DDC-1697
|
2012-03-24 22:50:54 -03:00 |
|
Guilherme Blanco
|
2a399312f7
|
Coding style fixes.
|
2012-03-15 01:03:01 -04:00 |
|
Benjamin Eberlei
|
bd1bc07270
|
[DDC-1651] Convert entities as parameters early in setParameter() to avoid them being part of result cache strings, which causes non-uniqueness.
|
2012-02-18 16:07:55 +01:00 |
|
Benjamin Eberlei
|
adec530c13
|
Merge branch '2.2'
|
2012-01-09 08:26:33 +01:00 |
|