简体   繁体   中英

Using forbidden column names in doctrine 1.2

I'm using postgresql database. I have table with column called "from" (I can't change it). Sql insertion query generated by doctrine are incorrect, because column name "from" should be closed by quotation marks. How can I tell doctrine to do this?

I believe, there is fast and clean way to correct that.

Thanks in advance.

Maybe $conn->setAttribute(Doctrine_Core::ATTR_QUOTE_IDENTIFIER, true); ? From Docs -> Configuration -> Identifier quoting

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM