Column names not being quoted properly!
Reported by Chris Lowder | December 2nd, 2009 @ 10:00 AM
Column names are not being quoted with like they should
be.
So in a situation where you have a column (integer) named
limit
AR generates something like:
"SELECT limit FROM tablename WHERE limit = 1" the SQL engine will give a compilation error
Should be:
"SELECT limit
FROM tablename WHERE
limit
= 1" OK
No comments found
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »
ActiveRecord is an insanely easy to use database framework written in objective-c It's obviously "inspired" by (copying) the infamous ActiveRecord that comes with Rails(http://rubyonrails.org) But it tries to be more versatile when it comes to working with multiple connections.