Just getting started with Doctrine ORM for PHP (v1.1.5) and ran into something unexpected.

I am generating models from the db (MySQL 4) using:

Doctrine::generateModelsFromDb($pathToModels);

Then generating YAML from the models using:

Doctrine::generateYamlFromModels($pathToSchema . '/schema.yml', $pathToModels);

In the generated models, the column names (as defined in hasColumn()) use the same case for the fields as in the db. All good.

But in the generated YAML, the column names are all lower-case, irrespective of the case in the model.

There do not seem to be any options available on the generateYamlFromModels() method that I could conceivably use to tweak this. Is there some other attribute I should be setting someplace, perhaps at connection-level, or at manager-level, etc? Might it be a bug?

Any ideas greatly appreciated. Thanks and cheers!

link|improve this question

I had seen the question <a href="stackoverflow.com/questions/1501501/… ORM: Models not respecting case</a>, but missed this bit in one of the answers: <blockquote>As for field names, they can be mapped to camelCase using alias feature of YAML schema file (name: user_id as userId).</blockquote> So, is that all there is? No way to get case-respect on Yaml generation, but I can manually tweak the YAML using aliasing? – David Weinraub Nov 8 '09 at 11:16
1  
It appears that Doctrine_Table::setColumn() sets the column name to lower case is it does not see an alias in there. – David Weinraub Nov 8 '09 at 12:00
2  
an other alternative is to generate models from DB and then yaml from models. This one keeps the right casing. – Dimitris Baltas Apr 1 '10 at 9:25
1  
@Dmitri Baltas: This seems to be the best workaround. So, if you move this to an answer, I'll accept. – David Weinraub Apr 19 '11 at 2:10
1  
@edem: The original question dates back to 2009. Can't remember, but that was probably current at the time. – David Weinraub Apr 21 '11 at 12:48
show 3 more comments
feedback

1 Answer

It seems this is a bug. I say that because YAML is case sensitive, and Doctrine's generateYAMLFromModels() is documented to be case sensitive. I did find a case sensitivity bug that was in 2.0 beta. Maybe this is the bug that affected your program. Barring anything else, though, it looks like Dimitris Baltas' comment seems to be the the workaround of choice:

an other alternative is to generate models from DB and then yaml from models. This one keeps the right casing.

Happy Hunting :)

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.