Skip to content

Instantly share code, notes, and snippets.

@benatkin
Created March 27, 2012 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benatkin/2220218 to your computer and use it in GitHub Desktop.
Save benatkin/2220218 to your computer and use it in GitHub Desktop.
config/initializers/ibm_db_adapter_ext.rb
# ensure that database is loaded
ActiveRecord::Base.connection
module ActiveRecord
module ConnectionAdapters
class IBM_DBAdapter
def visitor
@visitor ||= Arel::Visitors::IBM_DB.new self
end
def to_sql(arel, binds = [])
if arel.respond_to?(:ast)
visitor.accept(arel.ast) do
quote(*binds.shift.reverse)
end
else
arel
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment