Results 69 comments of Doctrine Bot

Comment created by @doctrinebot: A related Github Pull-Request [GH-335] was assigned: https://github.com/doctrine/common/pull/335

- relates to [DBAL-96: Make approach towards identifier quoting consistent](http://www.doctrine-project.org/jira/browse/DBAL-96)

Comment created by romanb: My point of view (and the reason for the current implementation) is as follows: - Using reserved words is bad practice. - Quoting everything is like...

Comment created by jantichy: Hi Roman, thank you very much for your response! I storngly disagree with most of your points :). There is no doubt that using reserved words...

Comment created by @beberlei: There is actually a very good reason for not quoting. Oracle columns behave differently in their internal structure when escaped. for example: ``` /**** * @column(type="integer")...

Comment created by romanb: @"Hi Roman, thank you very much for your response! I storngly disagree with most of your points" I guess we can agree to disagree then ;)...

Comment created by @lsmith77: I was one of the lead developers of MDB2 and we just ran into tons of issues when we overly aggressively did identifier quoting by default....

Comment created by @beberlei: Reserved words checking sounds to be a fair compromise!

Comment created by jantichy: Hello, thank you all for your responses. This helped me understand much about Doctrine 2 basic objectives - especially that it is designed mainly to "make...

Comment created by dboune: I would like to state an agreement with the OP. I understand where there are difficulties in handling reserved words and backtick/quoting, and certainly one should...