Tagged Questions
2
votes
1answer
256 views
Row Number in Symfony Doctrine Query
I am storing data for lap times in a database, the data consists of a distance, time, average speed and max speed.
I am trying to display a leaderboard which shows the top ten people in whatever ...
1
vote
2answers
61 views
How to build a query involving several different tables with different relationships
I'm currently trying to write a query which involves 5 main tables, 2 of which are referring to a 3rd with foreign keys, but not relating to each-other... and one of the first 2 tables is the main ...
1
vote
1answer
765 views
Doctrine - own postgres function
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
46 views
Doctrine 1.2 - Unknown record property / related component in a DQL with only 1 table envolved
I'm trying to execute this DQL:
$q = Doctrine_Query::create()
->select('*');
->from('Clientes c');
$retorno = $q->execute();
My BaseClientes.php:
// Connection Component Binding
...