active questions tagged activerecord - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:01:24Z http://stackoverflow.com/feeds/tag/activerecord http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1809916/rails-model-with-aggregrate-data-not-backed-by-a-table 2 Rails Model With Aggregrate Data (not backed by a table) Lee 2009-11-27T17:39:00Z 2009-11-27T21:41:44Z <p>Id like to create a model in rails that does not correlate to a table in the database. Instead the model should dynamically pull aggregrate data about other models. </p> <p>Example:</p> <p>I have a Restaurant model stored in the restaurants table in the DB. Id like to have a RestaurantStats model where i can run a RestaurantStats.find_total_visitors, or RestaurantStats.find_time_spent etc... on it and it returns a set of RestaurantStats models each with:</p> <p>[:restaurant_id, :stat_value]</p> <p>Obviously in each find... method that stat_value will mean something different (for find_time_spent it will be seconds spent, for find_total_visitors it will be number of visitors). The idea will be to return the top 100 restaurants by time spent, or total visitors. </p> <p>So far im creating a model (not inherited from ActiveRecord)</p> <pre><code>class RestaurantStats attr_reader :restaurant_id attr_reader :stat_value def self.find_total_visitors ... def self.find_time_spent ... end </code></pre> <p>The question is how do define the find_total_visitors, find_time_spent functions in a rails y way so that it will populate the restaurant_id, stat_value fields?</p> http://stackoverflow.com/questions/1810720/active-record-and-repository-patterns-together-is-it-acceptable 1 Active record and Repository patterns together. Is It acceptable? Fedyashev Nikita 2009-11-27T21:39:57Z 2009-11-27T21:39:57Z <p>I really like these two patterns.</p> <p>The drawback of Repository pattern is its cost(takes more time then Active record). Benefit is higher abstraction which really helps on complicated business logic.</p> <p>The drawback of Active record is that lower testability(db interaction is required) and harder in handling complicated domain logic.</p> <p>Is it acceptable to take the best of these two patterns to be used in the same application?</p> <p>I was thinking about using Active record for simple CRUDs and Repository for complicated domain objects.</p> <p>The idea behind this intention is to keep cost of code lower but still have a good code.</p> http://stackoverflow.com/questions/1803484/activerecord-custom-validation-problem 0 ActiveRecord custom validation problem x3ro 2009-11-26T12:46:17Z 2009-11-27T16:20:12Z <p>Hi,</p> <p>I'm having a problem with validation in my RoR Model:</p> <pre> def save self.accessed = Time.now.to_s self.modified = accessed validate_username super end </pre> <pre> def validate_username if User.find(:first, :select => :id, :conditions => ["userid = '#{self.userid}'"]) self.errors.add(:userid, "already exists") end end </pre> <p>As you can see, I've replaced the Model's save method with my own, calling validate_username before I call the parent .save method. My Problem is, that, even though the error is being added, Rails still tries to insert the new row into the database, even if the user name is a duplicate. What am I doing wrong here?</p> <p>PS: I'm not using <code>validate_uniqueness_of</code> because of the following issue with case sensitivity: <a href="https://rails.lighthouseapp.com/projects/8994/tickets/2503-validates%5Funiqueness%5Fof-is-horribly-inefficient-in-mysql" rel="nofollow">https://rails.lighthouseapp.com/projects/8994/tickets/2503-validates%5Funiqueness%5Fof-is-horribly-inefficient-in-mysql</a> </p> <p>Update: I tried weppos solution, and it works, but not quite as I'd like it to. Now, the field gets marked as incorrect, but only if all other fields are correct. What I mean is, if I enter a wrong E-Mail address for example, the email field is marked es faulty, the userid field is not. When I submit a correct email address then, the userid fields gets marked as incorrect. Hope you guys understand what I mean :D</p> <p><strong>Update2: The data should be validated in a way, that it should not be possible to insert duplicate user ids into the database, case insensitive. The user ids have the format "user-domain", eg. "test-something.net". Unfortunately, <code>validates_uniqueness_of :userid</code> does not work, it tries to insert "test-something.net" into the database even though there already is an "Test-something.net". validate_username was supposed to be my (quick) workaround for this problem, but it didn't work. weppos solution did work, but not quite as I want it to (as explained in my first update).</strong></p> <p>Best regards, x3ro</p> http://stackoverflow.com/questions/1809392/rails-hasmany-association-and-activerecordclone 0 Rails has_many association and ActiveRecord#clone aldrei 2009-11-27T15:37:28Z 2009-11-27T16:00:27Z <p>shepherd <code>has_many</code> animals. I am trying to clone one of them:</p> <pre><code>dolly=shepherd.animals.build(sheep.clone) </code></pre> <p>I get error:</p> <pre><code>undefined method `stringify_keys!' for #&lt;Sheep:0xb6ce154c&gt; </code></pre> <p>why? what is another way to clone dolly so that she would be associated with a shepherd and have sheep's attributes?</p> http://stackoverflow.com/questions/7864/why-all-the-active-record-hate 30 Why all the Active Record hate? Adam Tuttle 2008-08-11T15:30:30Z 2009-11-27T09:28:43Z <p>As I learn more and more about OOP, and start to implement various design patterns, I keep coming back to cases where people are hating on <a href="http://en.wikipedia.org/wiki/Active_record_pattern" rel="nofollow">Active Record</a>.</p> <p>Often, people say that it doesn't scale well (citing Twitter as their prime example) -- but nobody actually explains <strong><em>why</em></strong> it doesn't scale well; and / or how to achieve the pros of AR without the cons (via a similar but different pattern?)</p> <p>Hopefully this won't turn into a holy war about design patterns -- all I want to know is <strong>**specifically**</strong> what's wrong with Active Record.</p> <p>If it doesn't scale well, why not?</p> <p>What other problems does it have?</p> http://stackoverflow.com/questions/1805886/one-many-many-assoc-find-conditions 0 one-many-many assoc find conditions Nik 2009-11-26T22:11:01Z 2009-11-26T22:47:14Z <p>Hello all! I've got the following models:</p> <p><strong>project.rb</strong></p> <pre><code>has_many :tasks </code></pre> <p><strong>task.rb</strong></p> <pre><code>belongs_to :project has_many :assignments has_many :users, :through =&gt; :assignments </code></pre> <p><strong>user.rb</strong></p> <pre><code>has_many :assignments has_many :tasks, :through =&gt; :assignments </code></pre> <p><strong>assignment.rb</strong></p> <pre><code>belongs_to :task belongs_to :user </code></pre> <p><strong>So for example:</strong> Project.first.title #=> "Manhattan" Project.first.tasks.map(&amp;:name) # => ['Find Scientists', 'Find Money', 'Find Location'] Project.first.tasks.first.users.map(&amp;:full_name) #=> ['James Maxwell', 'Evariste Galois', 'Jules Verne']</p> <p><strong>My first question is:</strong> How can I find all the persons' names possibly with symbol to proc in one shot, I tried:</p> <p><code>Project.first.tasks.users.full_name #=&gt; AND FAILED</code> <code>Project.first.tasks.map(&amp;:users).full_name #=&gt; AND FAILED</code> <code>Project.first.tasks.map(&amp;:users).map(&amp;:full_name) #=&gt; AND FAILED</code></p> <p>Any ideas?</p> <p>And I think this following question might be in the same ball park:</p> <p>How can I do a find of Project with conditions that search the 'full_name' attribute of the users its tasks?</p> <p><strong>Example</strong></p> <p><code>Project.all(:include =&gt; {:tasks =&gt; :users}, :conditions =&gt; ['tasks.users.full_name LIKE ?', query]) #this failed</code></p> <p>I think the problem is at the 'tasks.users'.</p> <p>Thanks everyone, have a happy thanksgiving!</p> http://stackoverflow.com/questions/1795355/subsonic-activerecord-lambda-parameter-not-in-scope 0 subsonic ActiveRecord: Lambda Parameter not in scope. AJ 2009-11-25T08:00:45Z 2009-11-26T10:17:55Z <p>Hi I am trying to delete list of albums from Album table. Following is the syntax but it fails saying "Lambda Parameter not in scope"</p> <p>Album.Delete(x => (ListOfIds).Contains(x.Id));</p> <p>What am I missing here? </p> <p>Please advise.</p> <p>Thanks</p> <p>Pankaj</p> http://stackoverflow.com/questions/1799099/advantages-and-disadvantages-of-ruby-on-rails-polymorphic-relationships 1 Advantages and disadvantages of Ruby on Rails polymorphic relationships. Simon 2009-11-25T18:42:21Z 2009-11-25T20:16:25Z <p>What advantages and disadvantages do you know of Ruby on Rails polymorphic relationships.</p> http://stackoverflow.com/questions/1760404/order-products-by-association-count 0 Order products by association count Carlos Barbosa 2009-11-19T01:46:34Z 2009-11-25T02:10:21Z <p>Hello everyone i have</p> <pre><code>Class Product has_many :sales end Class Sale belongs_to :product end </code></pre> <p>How do i get the most sold products.. (Product find all.. order by .. ventas..) ?</p> http://stackoverflow.com/questions/1789996/attraccessible-in-rails-active-record 0 attr_accessible in rails Active Record VP 2009-11-24T13:17:30Z 2009-11-25T01:56:24Z <p>When I use the <code>attr_accessible</code> to specify which fields from my Model I will expose, is it true for script/console as well? I mean something that I didn't specify as <code>attr_accessible</code> won't be accessible as well through console ?</p> http://stackoverflow.com/questions/940376/pattern-for-unidirectional-hasmany-join 1 Pattern for unidirectional has_many join? Kris 2009-06-02T16:04:59Z 2009-11-24T21:13:28Z <p>It occurred to me that if I have a has_many join, where the foreign model does not have a belongs_to, and so the join is one way, then I don't actually need a foreign key. </p> <p>We could have a column, category_ids, which stores a marshaled Array of IDs which we can pass to <code>find</code>.</p> <p>So here is an untested example:</p> <pre><code>class page &lt; AR def categories Category.find(self.category_ids) end def categories&lt;&lt;(category) # get id and append to category_ids save! end def category_ids @cat_ids ||= Marshal.load(read_attribute(:category_ids)) rescue [] end def category_ids=(ids) @cat_ids = ids write_attribute(:category_ids, ids) end end </code></pre> <p>page.category_ids => [1,4,12,3] page.categories => Array of Category</p> <p>Is there accepted pattern for this already? Is it common or just not worth the effort?</p> http://stackoverflow.com/questions/1782469/model-relation-issue-with-ruby-on-rails 1 Model relation issue with Ruby on Rails lillq 2009-11-23T11:10:11Z 2009-11-24T18:24:12Z <p>I have a few models:</p> <pre><code>class StatsParent &lt; ActiveRecord::Base class CourseStat &lt; StatsParent class PlayerCourseStat &lt; CourseStat </code></pre> <p>I have the <code>Course</code> model set up as such:</p> <pre><code>class Course &lt; ActiveRecord::Base has_one :course_stat has_many :player_course_stats def update_stats(plyr_rnd) puts self.course_stat # this puts #&lt;PlayerCourseStat:0x000001015c54e0&gt; if self.course_stat self.course_stat.add_player_round(plyr_rnd) else self.course_stat = CourseStat.new(plyr_rnd) end end #...rest of the class </code></pre> <p>The issue I am running into: In the course I check to see if the <code>course_stat</code> exists and if it doesn't to create it. But in the model it is saying that it exists because there is a <code>player_course_stat</code> associated with this instance.</p> <p>When I dive into the <code>ruby script/console</code> and check to see the <code>course_stat</code> relationship it is nil.</p> <pre><code>&gt; ruby script/console Loading development environment (Rails 2.3.3) &gt;&gt; course = Course.find(1) =&gt; #&lt;Course id: ...&gt; &gt;&gt; course.course_stat =&gt; nil &gt;&gt; course.player_course_stats =&gt; [#&lt;PlayerCourseStat id: 1, ...&gt;] </code></pre> <ol> <li>Is there a problem with the way I have the relationships for the Course model set? </li> <li>Why is <code>course_stat</code> nil in the console but not in the application as it is running?</li> </ol> <p><strong>Update:</strong></p> <p>Looking into this a bit further I looked through the logs to get the SQL statements that are generated for the console and the application.</p> <pre><code># from console: course.course_stat CourseStat Load (0.2ms) SELECT * FROM "stats_parents" WHERE ("stats_parents".course_id = 1) AND ( ("stats_parents"."type" = 'CourseStat' ) ) LIMIT 1 # from app: course.course_stat CourseStat Load (0.3ms) SELECT * FROM "stats_parents" WHERE ("stats_parents".course_id = 3) AND ( ("stats_parents"."type" = 'CourseStat' OR "stats_parents"."type" = 'PlayerCourseStat' ) ) LIMIT 1 </code></pre> <p>I want a query like the console creates to be used. Is there a way for me to do this with out having to write the sql out in full?</p> http://stackoverflow.com/questions/1791821/rails-activerecord-transaction-does-not-finish 0 Rails ActiveRecord Transaction does not finish PanosJee 2009-11-24T17:58:46Z 2009-11-24T18:23:50Z <p>Hi everyone, I have a Transaction for a batch insert/update block and all of sudden it stopped working. The are no errors or exception risen and it seems like Rails stops just before the <code>end</code> of the Transaction blog so the methods does not return. I restarted both MySQL and the system but still.</p> http://stackoverflow.com/questions/1784788/activerecord-fundamentally-incompatible-with-composite-keys 0 ActiveRecord fundamentally incompatible with composite keys? stimms 2009-11-23T17:45:29Z 2009-11-23T23:33:38Z <p>I have been attempting to use subsonic for a project on which I'm working. All was going quite well until I encountered a link table with a composite primary key. That is a key made up of the primary keys of the two tables it joins. Subsonic failed to recognize both keys which was problematic. I was going to adjust subsonic to support compound keys but I stopped and though "Maybe there is a reason for this". Normally active record relies on a single primary key field for every record, even in link tables. But is this necessary? Should I just give up on active record for this project or continue with my modifications? </p> http://stackoverflow.com/questions/1782270/rails-db-neutral-pivot-table-or-crosstab 0 rails db neutral pivot table or crosstab holden 2009-11-23T10:31:04Z 2009-11-23T15:54:14Z <p>Does anyone know of a way to build a pivot table using activerecord which would be remotely DB neutral? I've tried to avoid using find_by_sql and DB specific queries but for a pivot table or crosstab query I have no idea how to do it in a way which is not specific to say MySQL. IE my mySQL find_by_sql breaks on a postgresql DB.</p> <p>I found <a href="http://crosstab.rubyforge.org/" rel="nofollow">http://crosstab.rubyforge.org/</a> this obscure crosstab gem which might work, but I'm wondering if anyone else has a better solution.</p> <p>Example something rediculous like this which basically just flips the axis on a table:</p> <pre><code>SELECT availables.name, rooms.id, MAX(IF(to_days(availables.bookdate) - to_days('2009-06-13') = 0, availables.price, '')) AS day1, MAX(IF(to_days(availables.bookdate) - to_days('2009-06-13') = 1, availables.price, '')) AS day2, MAX(IF(to_days(availables.bookdate) - to_days('2009-06-13') = 2, availables.price, '')) AS day3, MAX(IF(to_days(availables.bookdate) - to_days('2009-06-13') = 3, availables.price, '')) AS day4, MAX(IF(to_days(availables.bookdate) - to_days('2009-06-13') = 4, availables.price, '')) AS day5, MAX(IF(to_days(availables.bookdate) - to_days('2009-06-13') = 5, availables.price, '')) AS day6, MAX(IF(to_days(availables.bookdate) - to_days('2009-06-13') = 6, availables.price, '')) AS day7, AVG(availables.price),SUM(availables.price) FROM `availables` INNER JOIN rooms ON availables.room_id=rooms.id WHERE availables.room_id = '18382' GROUP BY availables.name </code></pre> http://stackoverflow.com/questions/1472772/activerecord-and-many-to-many-relationship 1 ActiveRecord and many to many relationship ? bgy 2009-09-24T16:23:59Z 2009-11-23T15:00:05Z <p>I'm trying to implement the Active Record pattern to a ZF project. I used to work with a similar approch before and it works well.</p> <p>But my problem now, is about how to handle many-to-many relationship with my models.</p> <p>Here is an example : </p> <p>Let's say i've an User model.</p> <pre><code>&lt;?php require_once 'MLO/Model/Model.php'; class Model_User extends MLO_Model_Model { protected $_data = array( 'id' =&gt; NULL, 'email' =&gt; NULL, 'password' =&gt; NULL, ); } </code></pre> <p>No problems.</p> <p>But what if I add a Group model ?</p> <pre><code>require_once 'MLO/Model/Model.php'; class Model_Group extends MLO_Model_Model { protected $_data = array( 'id' =&gt; NULL, 'name' =&gt; NULL, 'desc' =&gt; NULL, ); } </code></pre> <p>and</p> <pre><code>require_once 'MLO/Model/Collection.php'; class Model_Groups extends MLO_Model_Collection { protected $_modelClass = 'Model_Group'; } </code></pre> <p>I have then a mapper which convert results from the db to model object, and vice versa.</p> <p>My question is, how to handle many-to-many relationship with my models ?</p> <p>Where should i "store the relationship" ?</p> <p>Here is some clues i think about : </p> <pre><code>class Model_User extends MLO_Model_Model { protected $_data = array( 'id' =&gt; NULL, 'name' =&gt; NULL, 'desc' =&gt; NULL, 'groups' =&gt; NULL, // where groups will be an instance of the Model_Groups ); } </code></pre> <p>With the same approach, where groups will be an array like :</p> <pre><code>array(3) { [0]=&gt; array(3) { ["id"]=&gt; string(1) "9" ["name"]=&gt; string(1) "Guest" ["desc"]=&gt; string(1) "Some desc" } [1]=&gt; array(3) { ["id"]=&gt; string(1) "64" ["name"]=&gt; string(1) "Moderator" ["desc"]=&gt; string(1) "Some desc" } [2]=&gt; array(3) { ["id"]=&gt; string(1) "5" ["name"]=&gt; string(1) "Admin" ["desc"]=&gt; string(1) "Some desc" } } </code></pre> <p>Another ideas ?</p> <p>P.S : I'm not trying to handle ACLs or similar things, it's just for example.</p> http://stackoverflow.com/questions/1130049/moderated-posts-versioned-table 0 moderated posts - versioned table mlomnicki 2009-07-15T08:06:41Z 2009-11-23T14:33:40Z <p>Hi all,</p> <p>I'm creating CMS where created and updated posts have to be moderated. Ie. user Bill updates post - new content is stored somewhere in database. Unless cms-admin accepts Bill's post visitors should see post content before Bill's update. When cms-admin accepts new post content visitors see fresh version.</p> <p>I think about using acts_as_versioned or acts_as_revisible but neither do exactly what I want. Do you have any experience with that topic?</p> <p>ML</p> http://stackoverflow.com/questions/1781202/could-not-find-the-association-problem-in-rails 0 Could not find the association problem in Rails Ash 2009-11-23T05:09:40Z 2009-11-23T05:27:33Z <p>I am fairly new to Ruby on Rails, and I clearly have an active record association problem, but I can't solve it on my own.</p> <p>Given the three model classes with their associations:</p> <pre><code># application_form.rb class ApplicationForm &lt; ActiveRecord::Base has_many :questions, :through =&gt; :form_questions end # question.rb class Question &lt; ActiveRecord::Base belongs_to :section has_many :application_forms, :through =&gt; :form_questions end # form_question.rb class FormQuestion &lt; ActiveRecord::Base belongs_to :question belongs_to :application_form belongs_to :question_type has_many :answers, :through =&gt; :form_question_answers end </code></pre> <p>But when I execute the controller to add questions to application forms, I get the error:</p> <pre><code>ActiveRecord::HasManyThroughAssociationNotFoundError in Application_forms#show Showing app/views/application_forms/show.html.erb where line #9 raised: Could not find the association :form_questions in model ApplicationForm </code></pre> <p>Can anyone point out what I am doing wrong?</p> http://stackoverflow.com/questions/1343500/ruby-on-rails-connection-problem 4 Ruby on rails connection problem marr75 2009-08-27T20:07:31Z 2009-11-22T22:51:49Z <p>I have a Ruby on Rails project that I was developing on a hosted server but have decided to work on my local windows machine with.</p> <p>To get started I thought I'd make sure that I could just take my models from the old project and put them in a new project then query them in the console. This fails.</p> <p>Edit to reflect more accurate problem: The connection that rails builds to query my models can run only one query then gives the "Not connected" exception for all subsequent queries. Anybody know what's going on? I've checked my configuration, a lot. If there's some setting on mysql server that I don't know about I'd be willing to look at that.</p> <p>Stack Trace:</p> <pre><code>Price.find(1) ActiveRecord::StatementInvalid: Mysql::Error: query: not connected: SHOW FIELDS FROM `prices` from c:/Program Files/ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/connection_adapters/abstract_adapter.rb:212:in `log' from c:/Program Files/ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/connection_adapters/mysql_adapter.rb:320:in `execute' from c:/Program Files/ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/connection_adapters/mysql_adapter.rb:466:in `columns' from c:/Program Files/ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:1271:in `columns' from c:/Program Files/ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:1279:in `columns_hash' from c:/Program Files/ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:1578:in `find_one' from c:/Program Files/ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:1569:in `find_from_ids' from c:/Program Files/ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:616:in `find' from (irb):2 </code></pre> <p>I've verified that my MySQL database is accepting connections and has the data and structure I expect. I've double checked my connections, etc. Can anyone shed some light?</p> http://stackoverflow.com/questions/1776327/adding-variables-to-ar-object -2 Adding Variables to AR Object Tom 2009-11-21T18:36:50Z 2009-11-21T19:16:17Z <p>How can I add a variable to a set of objects returned by ActiveRecord? I've looked around and none of the methods I've seen seem to work.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1773367/linkto-issue-with-inherited-active-record-class 0 link_to issue with inherited Active Record class. lillq 2009-11-20T21:31:18Z 2009-11-21T00:12:59Z <p>Here are the classes as I have them set up:</p> <pre><code>class Stat &lt; ActiveRecord::Base belongs_to :stats_parent end class TotalStat &lt; Stat belongs_to :stats_parent end #The StatsParent class is just to show how I use the relation. class StatsParent &lt; ActiveRecord::Base has_one :total_stat has_many :stats end </code></pre> <p>For the Stats Controller index action:</p> <pre><code>def index @stats = Stat.all respond_to do |format| format.html # index.html.erb format.xml { render :xml =&gt; @stat } end end </code></pre> <p>In the index view for stats there is this bit of code:</p> <pre><code>&lt;% @stats.each do |stat| %&gt; ... &lt;td&gt;&lt;%= link_to 'Show', stat %&gt;&lt;/td&gt; &lt;% end %&gt; </code></pre> <p>And I get this error:</p> <pre><code>undefined method `total_stat_path' for #&lt;ActionView::Base:0x0000010324c1f8&gt; </code></pre> <p>Why cant the link_to work here? Do I need to create a separate controller to handle the <code>TotalStat</code>? </p> http://stackoverflow.com/questions/1772957/how-to-set-default-format-for-activerecord-fields-of-type-string 0 How to set Default format for activerecord fields of type string? btelles 2009-11-20T20:10:51Z 2009-11-20T21:17:23Z <p>Here's an easy one:</p> <p>How do I go about setting the default format for a string field in ActiveRecord?</p> <p>I've tried the following:</p> <pre><code>def phone_number_f "...#{phone_number}format_here..." end </code></pre> <p>But I'd like to keep the method name the same as the field name.</p> http://stackoverflow.com/questions/1737477/problem-find-joined-table-in-rails 0 Problem find joined table in rails art 2009-11-15T13:00:35Z 2009-11-20T16:16:01Z <p>I have model represent association rule (Body => Head)</p> <pre><code>def Item has_many :heads has_many :bodies ... end def Rule has_many :heads has_many :bodies ... end def Body belongs_to :item belongs_to :rule ... end def Head belongs_to :item belongs_to :rule ... end </code></pre> <p>I want to find rule that have body's item matched items specified and want to access its head via Rule but I can't do like</p> <pre><code>def Rule has_many :heads has_many :bodies has_many :item, :through =&gt; :heads has_many :item, :through =&gt; :bodies ... end </code></pre> <p>What should I change and do to accomplish this ?</p> <p>Thanks,</p> http://stackoverflow.com/questions/1598936/how-to-implement-active-record-inheritance-in-ruby-on-rails 1 How to implement Active Record inheritance in Ruby on Rails? andrisetiawan 2009-10-21T05:50:22Z 2009-11-20T07:42:09Z <p>How to implement inheritance with active records?</p> <p>For example, I want a class Animal, class Dog, and class Cat.</p> <p>How would the model and the database table mapping be?</p> http://stackoverflow.com/questions/1766138/rails-activerecord-locking-down-attributes-when-record-enters-a-particular-state 2 Rails ActiveRecord: Locking down attributes when record enters a particular state Gordon Isnor 2009-11-19T20:01:31Z 2009-11-20T06:26:40Z <p>Wondering if there’s a plugin or best way of setting up an ActiveRecord class so that, for example, when a record enter the "published" state, certain attributes are frozen so that they could not be tampered with. </p> http://stackoverflow.com/questions/1766350/ror-activerecord-attribute-handling-with-a-callback-beforeupdate 0 ROR ActiveRecord attribute handling with a callback before_update JZ 2009-11-19T20:39:48Z 2009-11-19T20:55:03Z <p>This code produces an <strong>ActiveRecordError</strong>:</p> <blockquote> <p>Callbacks must be a symbol denoting the method to call, a string to be evaluated, a block to be invoked, or an object responding to the callback method."</p> </blockquote> <pre><code>before_update :check_instock, :unless =&gt; Proc.new { |inventory| inventory.needed.nil? } def check_instock if needed &lt; amount instock = true else instock = false end end </code></pre> <p>This code is placed in my inventory model, I'm trying to handle some logic prior to calling @inventory.update_attributes (controller). Previously I was calling @inventory.update_attributes multiple times, which resulted in code that <a href="http://stackoverflow.com/questions/1760224/unfortunately-this-works-ror-comparison-in-activerecord-update">worked</a>, albeit not succinctly. </p> <p>Cheers!</p> http://stackoverflow.com/questions/1764796/equivalent-of-sqlite-blob-type-in-subsonic 0 Equivalent of SqLite Blob type in Subsonic? AJ 2009-11-19T16:53:06Z 2009-11-19T16:59:18Z <p>Hi In one SqLite table, I have a BLOB column for saving images (or binary data as a matter of fact). The table is Documents.</p> <p>Strangely, in Subsonic's ActiveRecord's Documents class, the type of that coulmn shows as STRING which doesn't make sense. It should be byte array. Right?</p> <p>What am I missing here? How do I map SqLite BLOB column in Subsonic?</p> <p>Please advise. Thanks Pankaj</p> http://stackoverflow.com/questions/1764321/using-a-non-integer-id-column-in-activerecord 0 using a non-integer id column in ActiveRecord parsenome 2009-11-19T15:56:03Z 2009-11-19T16:14:27Z <p>Are there any gotchas to using a non-integer column for the id in an ActiveRecord model? We're going to be using replicated databases, with copies of a Rails app writing to those databases in different datacenters. I'm worried that with normal IDs we'll get collisions between newly created rows in different datacenters.</p> <p>Our DBA has suggested just initializing the identity columns with different starting points for each of the different databases/datacenters, but over time those will eventually overlap and end up colliding (the particular table I'm worried about is going to be very high traffic). I'm sure it would work great for a while, but I don't want to be the one to debug what's wrong when things start to go wonky 2 years down the road.</p> <p>I'd like to just replace the id columns with GUIDs. The database can generate them transparently, just as the id is normally generated. MS guarantees that they won't collide between our different databases. The downside there is that I have to make sure Rails isn't going to barf on id columns that aren't integers.</p> <p>Has anyone else tried something like this? How much of the ActiveRecord plumbing did you have to change?</p> http://stackoverflow.com/questions/1168047/polymorphic-association-with-multiple-associations-on-the-same-model 1 Polymorphic Association with multiple associations on the same model Jamie Rumbelow 2009-07-22T20:29:31Z 2009-11-19T15:31:32Z <p>I'm slightly confused about a polymorphic association I've got. I need an Article model to have a header image, and many images, but I want to have a single Image model. To make matters even more confusing, the Image model is polymorphic (to allow other resources to have many images).</p> <p>I'm using this association in my Article model:</p> <pre><code>class Article &lt; ActiveRecord::Base has_one :header_image, :as =&gt; :imageable has_many :images, :as =&gt; :imageable end </code></pre> <p>Is this possible? Thanks.</p> http://stackoverflow.com/questions/1763127/ruby-on-rails-activerecord-validation 0 Ruby on Rails ActiveRecord Validation xpepermint 2009-11-19T13:00:13Z 2009-11-19T13:07:05Z <p>I would like to validate attributes in a function like this</p> <pre><code>class User &lt; ActiveRecord::Base validate :check_name( :name ) def check_name( name ) ... if name is invalid ... self.errors.add( :name, 'Name is invalid') end end </code></pre> <p>Can you please write the right code? Please explain the functionality why... THX! </p>