Tagged Questions

1
vote
0answers
69 views

Cumulative DQL with Doctrine

Hello Im having a hard time working out a proper DQL to generate cumulative sum. I can do it in plain SQL but when it comes to DQL i cant get hold of it. Here is how it looks in …
1
vote
1answer
167 views

Doctrine Named Queries: Specifing limit on query call

Hey guys! Let's imagine something like this: class MyTable extends Doctrine_Table { public function construct() { $q = Doctrine_Query::create()->from('MyTable …
0
votes
2answers
31 views

Doctrine - filter by foreign agregate value

Hi there, how can i use result of Agregate function in where in Doctrine? For example i want to know user with silly much numbers. SELECT u.name, COUNT(p.id) AS users_phonenumbe …
0
votes
1answer
58 views

Doctrine - own postgres function

Hi, how can i call my own function stored in postgres DB, while i am selecting data throught Doctrine_Query::create() ->select('schema.my_function(id)')
0
votes
1answer
108 views

How to use Doctrine_RawSql for a fulltext search and sorting by relevance

I'm trying to get fulltext searches to be sorted by relevance in a Doctrine_RawSql query. This code will perform the search: $q = new Doctrine_RawSql(); $q->select('{p.*}') …
0
votes
1answer
152 views

Does “LINQ to DQL” exist?

If LINQ-to-SQL overcomes the object-relational impedance mismatch of a .NET application talking to a SQL Server database... If I want to build a .NET MVC UI, where my model querie …
0
votes
3answers
479 views

Complex WHERE clauses using the PHP Doctrine ORM

I'm using the PHP Doctrine ORM to build my queries. However, I can't quite seem to figure how to write the following WHERE clause using DQL (Doctrine Query Language): WHERE name= …
0
votes
1answer
113 views

DQL return files in a Cabinet

Using DQL I want to return all the documents under the Cabinet test. How would I go about writing a query to do this?
0
votes
2answers
1k views

Join Table On Self using Doctrine (DQL)

I'm attempting to join a table on itself using doctrine's DQL. The scenario is: I have a table of product attribute values at is linked to a products table via a reference table …