What would be the easiest way to generate nextval for some particular sequence with given name?

The annotation solution with specifying

 * @ORM\GeneratedValue(strategy="SEQUENCE")
 * @ORM\SequenceGenerator(sequenceName="sq_foobar", allocationSize="1", initialValue="1")

doesn't satisfy me, as long as there is some more complex logic involved: in some cases I need to retrieve nextval, in other - I would go with the value retrieved from another sources (not sequence).

So I hope there is a way to retrieve a sequence nextval manually in entity's constructor.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted
+50

Then I think you should implement your own Identitfer Generator.

The easyest would be to override the Doctrine\ORM\Id\SequenceGenerator class to handle your specific case.

You then have to register this generator in the class metadata using Doctrine ORM API.

Some links: http://ranskills.wordpress.com/2011/05/26/how-to-add-a-custom-id-generation-strategy-to-doctrine-2-1/

https://github.com/doctrine/doctrine2/pull/206

link|improve this answer
The article advices to modify core files :-S – zerkms Feb 3 at 20:26
Yep. It's not possible without modifying core doctrine files, until PR #206 is merged. – Florian Feb 4 at 13:08
You can maintain your own fork, even if it's not a good idea. But a even worse idea is to mix identifier generation. – Florian Feb 4 at 13:14
For now I generate it in repository, that acts as an objects' factory – zerkms Feb 4 at 19:34
feedback

Your Answer

 
or
required, but never shown

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