I am using ActiveJDBC to access a third-party db. There is a column named "users/year". I am not happy with that but cannot change it. This results is an attribute "users/year" in the json thats the basis for my backbone.js model. Now if I want to access that attribute in the following template:
<li><%= name+ ' ' + users/year %></li>
Of course it doesn't work. I tried escaping but that doesn't work. Any suggestions?
Since I am new to activeJDBC and backbone.js is there a way off mapping the attribute to a acceptable variable name? Or other possible solutions for that? Should I switch from activeJDBC to something else?