# File active_record.rb, line 79
  def initialize(h=nil)
    raise "MiniRails: no database read" if @@all.nil?
    @id=@@id
    @@id+=1
    yield self if block_given?
    change_attributes(h) if !h.nil?
  end