From 2ec1527c47f87a2fca64a060ec13bf9ba1101a53 Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Fri, 28 Apr 2006 00:56:15 +0000 Subject: Only modify the sequence name in the FrontBase adapter if the FrontBase adapter is actually being used. [Marcel Molina Jr.] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4296 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../lib/active_record/connection_adapters/frontbase_adapter.rb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'activerecord/lib/active_record/connection_adapters/frontbase_adapter.rb') diff --git a/activerecord/lib/active_record/connection_adapters/frontbase_adapter.rb b/activerecord/lib/active_record/connection_adapters/frontbase_adapter.rb index 0610b7dbc1..b73915cf5c 100644 --- a/activerecord/lib/active_record/connection_adapters/frontbase_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/frontbase_adapter.rb @@ -8,14 +8,12 @@ FB_TRACE = false module ActiveRecord class Base - class << self - # FrontBase only supports one unnamed sequence per table - def set_sequence_name( value=nil, &block ) - end - # Establishes a connection to the database that's used by all Active Record objects. def frontbase_connection(config) # :nodoc: + # FrontBase only supports one unnamed sequence per table + define_attr_method(:set_sequence_name, :sequence_name, &Proc.new {|*args| nil}) + config = config.symbolize_keys database = config[:database] port = config[:port] -- cgit v1.2.3