I'm working with symfony and I would like to know how I can do a simple insert using the doctrine:dql task.

./symfony doctrine:dql "<what should I put here?>"
link|improve this question

I have a feeling you can only do SELECTs as only "FROM ..." seems to work and it implies there's a SELECT in front. Easiest alternative would probably be to run a specific fixture file which does the INSERT. – Tom Jun 22 '11 at 22:41
@Tom: you can also do UPDATE and DELETE requests whith this command. So why not DELETE requests? – greg0ire Jun 23 '11 at 5:22
feedback

1 Answer

up vote 1 down vote accepted

You officially cannot INSERT using DQL. Only SELECT, UPDATE and DELETE.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.