Tagged Questions

4
votes
8answers
3k views

One-to-many relationship in the same table

Im trying to use to define a one-to-many relationship in a single table. For example lets say I have a Groups table with these entries: Group: Group_1: name: Atlantic Records Group_2: ...
1
vote
1answer
336 views

What is the syntax for a multi-table delete on a MySQL database using Doctrine?

Using Doctrine, I am trying to delete records in a single table based on data gathered from multiple tables. 'companies_groups' is an association table linking 'companies' to 'groups'. I want to ...
1
vote
1answer
877 views

Doctrine_RawSql custom Select

I having problems to generate a doctrine_rawsql with a custom select. This is my rawsql $distance = glength(linestringfromwkb(linestring(asbinary(GeomFromText('POINT( FLOAT('30') ...
0
votes
1answer
348 views

Mysql_insert_id with Doctrine

I have a couple of tables (mySQL) that i would like to update with the help of Doctrine. The products table id is auto-incrementing, and here's a brief description on what I would like to do: ...