up vote 7 down vote favorite
10
share [g+] share [fb]

This came up a bit ago (http://stackoverflow.com/questions/399490) but it looks like the Rails plugin mentioned is not maintained (http://agilewebdevelopment.com/plugins/activerecord_base_without_table). Is there no way to do this with ActiveRecord as is?

If not, is there any way to get ActiveRecord validation rules without using ActiveRecord?

ActiveRecord wants the table to exist, of course.

link|improve this question

feedback

6 Answers

up vote 18 down vote accepted

This is an approach I have used in the past:

In app/models/tableless.rb

class Tableless < ActiveRecord::Base
  def self.columns
    @columns ||= [];
  end

  def self.column(name, sql_type = nil, default = nil, null = true)
    columns << ActiveRecord::ConnectionAdapters::Column.new(name.to_s, default,
      sql_type.to_s, null)
  end

  # Override the save method to prevent exceptions.
  def save(validate = true)
    validate ? valid? : true
  end
end

In app/models/foo.rb

class Foo < Tableless
  column :bar, :string  
  validates_presence_of :bar
end

In script/console

Loading development environment (Rails 2.2.2)
>> foo = Foo.new
=> #<Foo bar: nil>
>> foo.valid?
=> false
>> foo.errors
=> #<ActiveRecord::Errors:0x235b270 @errors={"bar"=>["can't be blank"]}, @base=#<Foo bar: nil>>
link|improve this answer
Beautiful. I'll be trying it out soon. Thanks! – Yar Jun 2 '09 at 21:39
feedback

Validations are simply a module within ActiveRecord. Have you tried mixing them into your non-ActiveRecord model?

class MyModel
  include ActiveRecord::Validations

  # ...
end
link|improve this answer
Haven't tried that, very interesting... I kind of wanted to get the free initialize method and that as well, but with just validations I'll be happy... – Yar Jun 2 '09 at 8:40
feedback

I found this link which works BEAUTIFULLY.

http://codetunes.com/2008/07/20/tableless-models-in-rails/

link|improve this answer
feedback

I figure the more answers the better since this is one of the first results in google when searching for "rails 3.1 models without tables"

I've implements the same thing without using ActiveRecord::Base while including the ActiveRecord::Validations

The main goal was to get everything working in formtastic, and below I've included a sample payment that will not get saved anywhere but still has the ability to be validated using the validations we all know and love.

class Payment
  include ActiveRecord::Validations
  attr_accessor :cc_number, :payment_type, :exp_mm, :exp_yy, :card_security, :first_name, :last_name, :address_1, :address_2, :city, :state, :zip_code, :home_telephone, :email, :new_record

  validates_presence_of :cc_number, :payment_type, :exp_mm, :exp_yy, :card_security, :first_name, :last_name, :address_1, :address_2, :city, :state

  def initialize(options = {})
    if options.blank?
      new_record = true
    else
      new_record = false
    end
    options.each do |key, value|
      method_object = self.method((key + "=").to_sym)
      method_object.call(value)
    end
  end

  def new_record?
    return new_record
  end

  def to_key
  end

  def persisted?
    return false
  end
end

I hope this helps someone as I've spent a few hours trying to figure this out today.

link|improve this answer
Thanks, wish that had been available in ROR 2 :) – Yar Dec 1 '11 at 0:57
You should be including ActiveModel::Validations, however. For more info, you can check out the Railscast on the topic, as well as this blog post by Yehuda Katz. – Dimitar Jan 16 at 15:07
feedback

UPDATE: For Rails 3 this can be done very easy. In Rails 3+ you can use the new ActiveModel module and it's submodules. This should work now:

class Tableless
  include ActiveModel::Validations

  attr_accessor :name

  validates_presence_of :name
end

For more info, you can check out the Railscast (or read about it on AsciiCasts) on the topic, as well as this blog post by Yehuda Katz.

OLD ANSWER FOLLOWS:

You may need to add this to the solution, proposed by John Topley in the previous comment:

class Tableless

  class << self
    def table_name
      self.name.tableize
    end
  end

end

class Foo < Tableless; end
Foo.table_name # will return "foos"

This provides you with a "fake" table name, if you need one. Without this method, Foo::table_name will evaluate to "tablelesses".

link|improve this answer
Interesting. I've been using this codetunes.com/2008/07/20/tableless-models-in-rails for some time without problems. Thanks. – Yar Dec 17 '09 at 17:29
Yes, that solution works and does need the table_name patch, because in that case the class inherits directly from ActiveRecord::Base. – Dimitar Dec 27 '09 at 0:50
feedback

This is a search form that presents an object called criteria that has a nested period object with beginning and end attributes.

The action in the controller is really simple yet it loads values from nested objects on the form and re-renders the same values with error messages if necessary.

Works on Rails 3.1.

The model:

class Criteria < ActiveRecord::Base
  class << self

    def column_defaults
      {}
    end

    def column_names
      []
    end
  end # of class methods

  attr_reader :period

  def initialize values
    values ||= {}
    @period = Period.new values[:period] || {}
    super values
  end

  def period_attributes
    @period
  end
  def period_attributes= new_values
    @period.attributes = new_values
  end
end

In the controller:

def search
  @criteria = Criteria.new params[:criteria]
end

In the helper:

def criteria_index_path ct, options = {}
  url_for :action => :search
end

In the view:

<%= form_for @criteria do |form| %>
  <%= form.fields_for :period do |prf| %>
    <%= prf.text_field :beginning_as_text %>
    <%= prf.text_field :end_as_text %>
  <% end %>
  <%= form.submit "Search" %>
<% end %>

Produces the HTML:

<form action="/admin/search" id="new_criteria" method="post">
  <input id="criteria_period_attributes_beginning_as_text" name="criteria[period_attributes][beginning_as_text]" type="text"> 
  <input id="criteria_period_attributes_end_as_text" name="criteria[period_attributes][end_as_text]" type="text">

Note: The action attribute provided by the helper and the nested attributes naming format that makes it so simple for the controller to load all the values at once

link|improve this answer
Hi @Neil Stockbridge, I'm not positive this answers the question at all. – Yar Oct 28 '11 at 13:48
It's a working example of using Base without a table ( which was the original question) including the code to make Base work without a table. This example works for me with Rails 3.1.0. The others didn't. I thought this might be of use to others. – Neil Stockbridge Nov 12 '11 at 23:34
What about validation? – Yar Nov 14 '11 at 6:15
Validation is not included in the example above but since the object on the form is an ActiveRecord::Base, validation works just as you would expect with any other ActiveRecord object on a form. The example is perhaps cluttered by the inclusion of the nested object – Neil Stockbridge Nov 16 '11 at 23:02
Thanks... I'll have to try it, I guess. Looking at it, I cannot see how the attributes added get considered as first-class columns. Perhaps they don't need to be.... anyway, +1 for now, thanks. – Yar Nov 17 '11 at 1:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.